2
0
forked from Wavyzz/dolibarr

Fix php warning

This commit is contained in:
ldestailleur
2025-03-25 20:43:33 +01:00
parent 7689f12960
commit d2b6fb83b7

View File

@@ -4466,7 +4466,8 @@ class nusoap_server extends nusoap_base
$this->debug('methodname: ' . $this->methodname . ' methodURI: ' . $this->methodURI);
// get/set custom response tag name
$outputMessage = $this->wsdl->getOperationData($this->methodname)['output']['message'];
$tmparray = $this->wsdl->getOperationData($this->methodname);
$outputMessage = (empty($tmparray) ? '' : $tmparray['output']['message']);
$this->responseTagName = $outputMessage;
$this->debug('responseTagName: ' . $this->responseTagName . ' methodURI: ' . $this->methodURI);