Changeset: ac97c97f512e for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=ac97c97f512e
Modified Files:
        clients/php/lib/php_monetdb.php
Branch: Oct2012
Log Message:

Fixed PHP client to no longer produce a fatal error in PHP 5.4 - Bug #3169


diffs (12 lines):

diff --git a/clients/php/lib/php_monetdb.php b/clients/php/lib/php_monetdb.php
--- a/clients/php/lib/php_monetdb.php
+++ b/clients/php/lib/php_monetdb.php
@@ -299,7 +299,7 @@
                        return FALSE;
                }
                
-               if (($row_array =  monetdb_fetch_assoc(&$hdl, $row)) == FALSE) {
+               if (($row_array =  monetdb_fetch_assoc($hdl, $row)) == FALSE) {
                        return FALSE;
                }
                
_______________________________________________
checkin-list mailing list
checkin-list@monetdb.org
http://mail.monetdb.org/mailman/listinfo/checkin-list

Reply via email to