Browse Source

Forget to add the $this->result param to fetchInto

experimental/pre_new_hash_func
Tomas V.V.Cox 25 years ago
parent
commit
dfa35a78e6
  1. 2
      pear/DB.php

2
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;
}

Loading…
Cancel
Save