Home » Web Services » SOAP » Bug #1492
__call function gets wrong number of parameters
Details
| Submitted | 2004-05-25 12:35 UTC |
|---|---|
| From | bart at mediawave dot nl |
| Assigned | arnaud |
| Status | Closed |
| Package | SOAP |
| PHP Version | 5.0.0RC2 (Release Candidate 2) |
| OS | Win2K |
| Roadmaps | (Not assigned) |
Comments
[2004-05-25 12:35 UTC] bart at mediawave dot nl
Description:
------------
To get PEAR:SOAP to work in PHP 5 I had to make the following change in Client.php:
function &__call($method, &$args, &$return_value)
Change to:
function &__call($method, &$args, &$return_value = '')
It seems PHP5 doesn't use the return value var? I don't know. It just works now. :)