Php 5.3...
authorStéphane Jacob <sj@m4x.org>
Sat, 19 Mar 2011 18:47:13 +0000 (19:47 +0100)
committerStéphane Jacob <sj@m4x.org>
Sun, 20 Mar 2011 23:06:46 +0000 (00:06 +0100)
Signed-off-by: Stéphane Jacob <sj@m4x.org>
modules/admin.php
modules/xnet.php
modules/xnetgrp.php

index 7d4923a..cef0046 100644 (file)
@@ -1265,7 +1265,7 @@ class AdminModule extends PLModule
 
     private static function updateLanguage(array $item) {}
 
-    function handler_geocoding(&$page, $category = null, $action = null, $id = null)
+    function handler_geocoding($page, $category = null, $action = null, $id = null)
     {
         // Warning, this handler requires the following packages:
         //  * pkg-isocodes
index e0fada4..45bc80f 100644 (file)
@@ -274,7 +274,7 @@ class XnetModule extends PLModule
         }
     }
 
-    function handler_edit(&$page)
+    function handler_edit($page)
     {
         global $globals;
 
index 9126b90..3b9e3a1 100644 (file)
@@ -933,7 +933,7 @@ class XnetGrpModule extends PLModule
         }
     }
 
-    private function changeLogin(PlPage &$page, PlUser &$user, $login)
+    private function changeLogin(PlPage $page, PlUser $user, $login)
     {
         // Search the user's uid.
         $xuser = User::getSilent($login);