Skip to content

Commit

Permalink
0020916: missing function split() in /webservice/soap/lib/nusoap.php:…
Browse files Browse the repository at this point in the history
…3318

replaced deprecated split by preg_split according to fix in library https://github.com/f00b4r/nusoap/blob/e83219ee1add324124fea8e448b4cfddf782f8ff/src/nusoap.php#L3456
  • Loading branch information
katringross authored May 13, 2022
1 parent 460d566 commit 48b4dd9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webservice/soap/lib/nusoap.php
Original file line number Diff line number Diff line change
Expand Up @@ -3319,7 +3319,7 @@ function usePersistentConnection(){
*/
function parseCookie($cookie_str) {
$cookie_str = str_replace('; ', ';', $cookie_str) . ';';
$data = split(';', $cookie_str);
$data = preg_split(';', $cookie_str);
$value_str = $data[0];

$cookie_param = 'domain=';
Expand Down

0 comments on commit 48b4dd9

Please sign in to comment.