From 48b4dd9f0ca7050757ac3466c3bdd15a4bd77d05 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Katrin=20Gro=C3=9Fkopf?= Date: Fri, 13 May 2022 08:52:10 +0200 Subject: [PATCH] 0020916: missing function split() in /webservice/soap/lib/nusoap.php:3318 replaced deprecated split by preg_split according to fix in library https://github.com/f00b4r/nusoap/blob/e83219ee1add324124fea8e448b4cfddf782f8ff/src/nusoap.php#L3456 --- webservice/soap/lib/nusoap.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webservice/soap/lib/nusoap.php b/webservice/soap/lib/nusoap.php index 529a6a5436e0..52cb11007e4d 100644 --- a/webservice/soap/lib/nusoap.php +++ b/webservice/soap/lib/nusoap.php @@ -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=';