if ($this->current >= $this->to) {
return null;
}
- return $this->fetchRow($mode, $this->current);
+ return parent::fetchRow($mode, $this->current);
}
function fetchInto(&$arr, $mode=DB_FETCHMODE_DEFAULT)
if ($this->current >= $this->to) {
return null;
}
- return $this->fetchInto($arr, $mode, $this->current);
+ return parent::fetchInto($arr, $mode, $this->current);
}
}
?>