forked from Wavyzz/dolibarr
Fix php warning
This commit is contained in:
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user