From dfa35a78e67565dbbd63bade91ac613ceaa4135d Mon Sep 17 00:00:00 2001 From: "Tomas V.V.Cox" Date: Fri, 8 Jun 2001 01:15:35 +0000 Subject: [PATCH] Forget to add the $this->result param to fetchInto --- pear/DB.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.50.1