1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 01:02:25 +01:00

Fix by (mathieu dot bruneau at argontechnologies dot ca)

This commit is contained in:
Marcus Boerger
2004-08-27 20:38:15 +00:00
parent ec3aac1e86
commit eeb4e150e7

View File

@@ -45,7 +45,7 @@ class DbaReader implements Iterator
*/
function rewind() {
$this->key = dba_firstkey($this->db);
fetch_data();
$this->fetch_data();
}
/**
@@ -55,7 +55,7 @@ class DbaReader implements Iterator
*/
function next() {
$this->key = dba_nextkey($this->db);
fetch_data();
$this->fetch_data();
}
/**