diff options
author | friendica <info@friendica.com> | 2012-01-21 14:07:28 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-01-21 14:07:28 -0800 |
commit | b5ec47590673ff9d147de1952d357b34e405a131 (patch) | |
tree | bd558e95fa168a793edd9f66b22698e64fceb410 /include/dba.php | |
parent | 43102e940a2c3c8994733527f39b1b26a46589b4 (diff) | |
download | volse-hubzilla-b5ec47590673ff9d147de1952d357b34e405a131.tar.gz volse-hubzilla-b5ec47590673ff9d147de1952d357b34e405a131.tar.bz2 volse-hubzilla-b5ec47590673ff9d147de1952d357b34e405a131.zip |
bug #253 use MSQLI_ASSOC, not MYSQL_ASSOC
Diffstat (limited to 'include/dba.php')
-rwxr-xr-x | include/dba.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/dba.php b/include/dba.php index 782c279d5..7455b6b3e 100755 --- a/include/dba.php +++ b/include/dba.php @@ -125,7 +125,7 @@ class dba { $r = array(); if($this->mysqli) { if($result->num_rows) { - while($x = $result->fetch_array(MYSQL_ASSOC)) + while($x = $result->fetch_array(MYSQLI_ASSOC)) $r[] = $x; $result->free_result(); } |