phpgroupware-cvs
[Top][All Lists]
Advanced

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

[Phpgroupware-cvs] squirrelmail/functions addressbook.php,1.4


From: powerstat
Subject: [Phpgroupware-cvs] squirrelmail/functions addressbook.php,1.4
Date: Wed, 4 May 2005 15:41:00 +0200

Update of squirrelmail/functions

Modified Files:
     Branch: MAIN
            addressbook.php lines: +2 -2

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

====================================================
Index: squirrelmail/functions/addressbook.php
diff -u squirrelmail/functions/addressbook.php:1.3 
squirrelmail/functions/addressbook.php:1.4
--- squirrelmail/functions/addressbook.php:1.3  Wed Jun 18 22:25:37 2003
+++ squirrelmail/functions/addressbook.php      Wed May  4 13:41:56 2005
@@ -91,7 +91,7 @@
         $ret = array();
         for($i = 1 ; $i <= $this->numbackends ; $i++) {
            if(empty($type) || $type == $this->backends[$i]->btype) {
-              array_push($ret, &$this->backends[$i]);
+              array_push($ret, $this->backends[$i]);
            }
         }
         return $ret;






reply via email to

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