diff options
Diffstat (limited to 'framework/3rdParty/WsdlGen')
-rw-r--r-- | framework/3rdParty/WsdlGen/Wsdl.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/3rdParty/WsdlGen/Wsdl.php b/framework/3rdParty/WsdlGen/Wsdl.php index 56676a26..eb41049f 100644 --- a/framework/3rdParty/WsdlGen/Wsdl.php +++ b/framework/3rdParty/WsdlGen/Wsdl.php @@ -85,7 +85,7 @@ class Wsdl { $this->serviceName = $name; if ($serviceUri == '') $serviceUri = 'http://'.$_SERVER['HTTP_HOST'].$_SERVER['PHP_SELF']; - $this->serviceUri = $serviceUri; + $this->serviceUri = str_replace('&', '&', $serviceUri); $this->types = new ArrayObject(); $this->targetNamespace = 'urn:'.$name.'wsdl'; } |