trying out the hint from github issue
[plcapi.git] / php / plc_api.php
index b76b8b3..ea90a8c 100644 (file)
@@ -142,7 +142,9 @@ class PLCAPI
     // Marshal the XML-RPC request as a POST variable. <nil/> is an
     // extension to the XML-RPC spec that is supported in our custom
     // version of xmlrpc.so via the 'allow_null' output_encoding key.
-    $request = xmlrpc_encode_request($method, $args, array('allow_null' => TRUE));
+    $request = xmlrpc_encode_request($method, $args, array('null_extension'));
+    error_log("ENCODED: " . $method . "(" . $args . ")");
+    error_log("OBTAINED: " . $request);
     curl_setopt($curl, CURLOPT_POSTFIELDS, $request);
 
     // Construct the HTTP header
@@ -244,7 +246,7 @@ class PLCAPI
 // this tentatively allows to tune mainstream xmlrpc php lib
 // so as to achieve the same behaviour as with our patched lib
 $GLOBALS['xmlrpc_null_extension'] = true;
-$GLOBALS['$xmlrpc_null_apache_encodingn'] = true;
+$GLOBALS['$xmlrpc_null_apache_encoding'] = true;
 
 global $adm;