Home » Web Services » SOAP » Bug #4923
Unknown Method
Details
| Submitted | 2005-07-26 15:25 UTC |
|---|---|
| From | pear at grundprinzip dot de |
| Assigned | yunosh |
| Status | Closed |
| Package | SOAP |
| PHP Version | 4.3.8 |
| OS | Windows XP |
| Roadmaps | (Not assigned) |
Comments
[2005-07-26 15:25 UTC] pear at grundprinzip dot de
Description:
------------
In SOAP/Server.php on line 219
if (PEAR::isError($soap_msg)) {
return $this->raiseSoapFault($soap_msg);
}
there is a missing underscore. It should be correctly called like this:
if (PEAR::isError($soap_msg)) {
return $this->_raiseSoapFault($soap_msg);
}