]> granicus.if.org Git - php/commitdiff
Forget to add the $this->result param to fetchInto
authorTomas V.V.Cox <cox@php.net>
Fri, 8 Jun 2001 01:15:35 +0000 (01:15 +0000)
committerTomas V.V.Cox <cox@php.net>
Fri, 8 Jun 2001 01:15:35 +0000 (01:15 +0000)
pear/DB.php

index a6ef7e1ff33140c2aeae931c724beabe776f1a8e..997e7eeea38b11059dcdc445453d219ab2721570 100644 (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;
         }