mirror of
https://github.com/friendica/friendica
synced 2025-04-26 03:50:12 +00:00
bug #253 use MSQLI_ASSOC, not MYSQL_ASSOC
This commit is contained in:
parent
43102e940a
commit
b5ec475906
2 changed files with 2 additions and 2 deletions
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue