You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While using econea/nusoap v0.9.17 under PHP 8.3, we encounter a lot of these warnings :
PHP Warning: Undefined array key "output" in /vendor/econea/nusoap/src/nusoap.php on line 4466
PHP Warning: Trying to access array offset on null in /vendor/econea/nusoap/src/nusoap.php on line 4466
It occurs in the parseRequest() method :
// get/set custom response tag name
$outputMessage = $this->wsdl->getOperationData($this->methodname)['output']['message'];
It seems that the ['output'] key of the array is not checked for existence before being accessed, therefore issuing these warnings.
The text was updated successfully, but these errors were encountered:
While using econea/nusoap v0.9.17 under PHP 8.3, we encounter a lot of these warnings :
PHP Warning: Undefined array key "output" in /vendor/econea/nusoap/src/nusoap.php on line 4466
PHP Warning: Trying to access array offset on null in /vendor/econea/nusoap/src/nusoap.php on line 4466
It occurs in the parseRequest() method :
It seems that the ['output'] key of the array is not checked for existence before being accessed, therefore issuing these warnings.
The text was updated successfully, but these errors were encountered: