PEAR is archived and read-only

This mirror preserves historical PEAR package releases and metadata so existing references remain available.

Home » Web Services » SOAP » Bug #4923

Unknown Method

Details

Submitted2005-07-26 15:25 UTC
Frompear at grundprinzip dot de
Assignedyunosh
StatusClosed
PackageSOAP
PHP Version4.3.8
OSWindows 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);
}