aboutsummaryrefslogtreecommitdiffstats
path: root/include/dba.php
diff options
context:
space:
mode:
Diffstat (limited to 'include/dba.php')
-rwxr-xr-xinclude/dba.php2
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();
}