From: Stéphane Jacob Date: Sat, 19 Mar 2011 18:47:13 +0000 (+0100) Subject: Php 5.3... X-Git-Tag: xorg/1.1.0~26^2~8 X-Git-Url: http://git.polytechnique.org/?a=commitdiff_plain;h=2a1cd4ab034c1c4dccd132a76253cf4a7f84bf7d;p=platal.git Php 5.3... Signed-off-by: Stéphane Jacob --- diff --git a/modules/admin.php b/modules/admin.php index 7d4923a..cef0046 100644 --- a/modules/admin.php +++ b/modules/admin.php @@ -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 diff --git a/modules/xnet.php b/modules/xnet.php index e0fada4..45bc80f 100644 --- a/modules/xnet.php +++ b/modules/xnet.php @@ -274,7 +274,7 @@ class XnetModule extends PLModule } } - function handler_edit(&$page) + function handler_edit($page) { global $globals; diff --git a/modules/xnetgrp.php b/modules/xnetgrp.php index 9126b90..3b9e3a1 100644 --- a/modules/xnetgrp.php +++ b/modules/xnetgrp.php @@ -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);