diff options
author | wei <> | 2007-01-11 07:05:28 +0000 |
---|---|---|
committer | wei <> | 2007-01-11 07:05:28 +0000 |
commit | 34d24de2f004df6ab096f4165eb31e16e70e76bb (patch) | |
tree | 39f6fa1306f8b82cf5203fdf254a83a2f894efa7 /framework/3rdParty/WsdlGen/Wsdl.php | |
parent | 513d38062e8d33cf8be7ae3480323fa9750758e9 (diff) |
change DomDocument::loadXml to use instance method (static method causes E_STRICT error).
Diffstat (limited to 'framework/3rdParty/WsdlGen/Wsdl.php')
-rw-r--r-- | framework/3rdParty/WsdlGen/Wsdl.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/framework/3rdParty/WsdlGen/Wsdl.php b/framework/3rdParty/WsdlGen/Wsdl.php index 55694438..4b94fbb4 100644 --- a/framework/3rdParty/WsdlGen/Wsdl.php +++ b/framework/3rdParty/WsdlGen/Wsdl.php @@ -107,7 +107,8 @@ class Wsdl xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap-enc="http://schemas.xmlsoap.org/soap/encoding/"></definitions>'; - $dom = DOMDocument::loadXml($xml); + $dom = new DOMDocument(); + $dom->loadXml($xml); $this->definitions = $dom->documentElement; $this->addTypes($dom); |