phpgroupware-cvs
[Top][All Lists]
Advanced

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

[Phpgroupware-cvs] api/db class.db_odbc.php,1.2


From: powerstat
Subject: [Phpgroupware-cvs] api/db class.db_odbc.php,1.2
Date: Wed, 4 May 2005 16:00:00 +0200

Update of api/db

Modified Files:
     Branch: MAIN
            class.db_odbc.php lines: +2 -2

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

====================================================
Index: api/db/class.db_odbc.php
diff -u api/db/class.db_odbc.php:1.1 api/db/class.db_odbc.php:1.2
--- api/db/class.db_odbc.php:1.1        Thu Oct 23 07:25:03 2003
+++ api/db/class.db_odbc.php    Wed May  4 14:00:11 2005
@@ -72,7 +72,7 @@
                function next_record()
                {
                        $this->Record = array();
-                       $stat      = odbc_fetch_into($this->Query_ID, 
++$this->Row, &$this->Record);
+                       $stat      = odbc_fetch_into($this->Query_ID, 
++$this->Row, $this->Record);
                        if (!$stat)
                        {
                                if ($this->Auto_Free)






reply via email to

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