X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lib%2Fxmlrpc_wrappers.inc;h=4331c360103e3dac5e6664a999d75eeea23690b6;hb=82b80c30c362ae96096f8be6a888a9fc665e3dbe;hp=cec33742a9d60caf88c1e84b903af16dc720e6d8;hpb=2f9ef748af3aed90c80d823433be084fa56e5f58;p=plcapi.git diff --git a/lib/xmlrpc_wrappers.inc b/lib/xmlrpc_wrappers.inc index cec3374..4331c36 100644 --- a/lib/xmlrpc_wrappers.inc +++ b/lib/xmlrpc_wrappers.inc @@ -87,7 +87,7 @@ function wrap_php_class($className, $extraOptions=array()) * @see PhpXmlRpc\Wrapper::wrapXmlrpcMethod * @param xmlrpc_client $client * @param string $methodName - * @param int|array $extraOptions the usage of an int as signature number is deprecated, use an option in $extraOptions + * @param int|array $extraOptions the usage of an int as signature number is deprecated, use an option 'signum' in $extraOptions * @param int $timeout deprecated, use an option in $extraOptions * @param string $protocol deprecated, use an option in $extraOptions * @param string $newFuncName deprecated, use an option in $extraOptions @@ -112,8 +112,10 @@ function wrap_xmlrpc_method($client, $methodName, $extraOptions=0, $timeout=0, $ // backwards compat: return string instead of callable $extraOptions['return_source'] = true; $wrapped = $wrapper->wrapXmlrpcMethod($client, $methodName, $extraOptions); - eval($wrapped['source']); - $wrapped = $wrapped['function']; + if (is_array($wrapped)) { + eval($wrapped['source']); + $wrapped = $wrapped['function']; + } } else { $wrapped = $wrapper->wrapXmlrpcMethod($client, $methodName, $extraOptions); }