phpgroupware-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Phpgroupware-cvs] phpgroupware xmlrpc.php,1.15


From: powerstat
Subject: [Phpgroupware-cvs] phpgroupware xmlrpc.php,1.15
Date: Wed, 4 May 2005 16:02:00 +0200

Update of phpgroupware

Modified Files:
     Branch: MAIN
            xmlrpc.php lines: +3 -3

Log Message:
Fixes deprecated (since 2003) call by reference functions calls. All function 
declarations were already correct.

====================================================
Index: phpgroupware/xmlrpc.php
diff -u phpgroupware/xmlrpc.php:1.14 phpgroupware/xmlrpc.php:1.15
--- phpgroupware/xmlrpc.php:1.14        Fri Apr 15 13:19:15 2005
+++ phpgroupware/xmlrpc.php     Wed May  4 14:02:54 2005
@@ -82,7 +82,7 @@
                        // Find out what method they are calling
                        // This function is odd, you *NEED* to assign the 
results
                        // to a value, or $method is never returned.  (jengo)
-                       $null = xmlrpc_decode_request($request_xml, &$method);
+                       $null = xmlrpc_decode_request($request_xml, $method);
                        $GLOBALS['phpgw']->session->xmlrpc_method_called = 
$method;
                        $GLOBALS['phpgw']->session->update_dla();

@@ -132,7 +132,7 @@
                // Find out what method they are calling
                // This function is odd, you *NEED* to assign the results
                // to a value, or $method is never returned.  (jengo)
-               $null = xmlrpc_decode_request($request_xml, &$method);
+               $null = xmlrpc_decode_request($request_xml, $method);

                if ($method == 'system.login')
                {






reply via email to

[Prev in Thread] Current Thread [Next in Thread]