Skip to content

Commit

Permalink
Merge pull request #4528 from kroepelin-projekte/bug-20916
Browse files Browse the repository at this point in the history
0020916: missing function split() in /webservice/soap/lib/nusoap.php
  • Loading branch information
smeyer-ilias authored May 16, 2022
2 parents 62a79ce + 48b4dd9 commit 0c8ad31
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 0c8ad31

Please sign in to comment.