From: Tomas V.V.Cox Date: Fri, 8 Jun 2001 01:15:35 +0000 (+0000) Subject: Forget to add the $this->result param to fetchInto X-Git-Tag: PRE_GRANULAR_GARBAGE_FIX~102 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dfa35a78e67565dbbd63bade91ac613ceaa4135d;p=php Forget to add the $this->result param to fetchInto --- diff --git a/pear/DB.php b/pear/DB.php index a6ef7e1ff3..997e7eeea3 100644 --- a/pear/DB.php +++ b/pear/DB.php @@ -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; }