1
0
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:
Tomas V.V.Cox
2001-06-08 01:15:35 +00:00
parent a45a64a15c
commit dfa35a78e6
+1 -1
View File
@@ -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;
}