mirror of
https://github.com/php/php-src.git
synced 2026-04-23 16:08:35 +02:00
Forget to add the $this->result param to fetchInto
This commit is contained in:
+1
-1
@@ -604,7 +604,7 @@ class DB_result
|
||||
$fetchmode = $this->dbh->fetchmode;
|
||||
}
|
||||
|
||||
$res = $this->dbh->fetchInto($arr, $fetchmode, $rownum);
|
||||
$res = $this->dbh->fetchInto($this->result, $arr, $fetchmode, $rownum);
|
||||
if ($res !== DB_OK) {
|
||||
return $res;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user