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')
{
_______________________________________________
Phpgroupware-cvs mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/phpgroupware-cvs