Browse Source

Fix by (mathieu dot bruneau at argontechnologies dot ca)

PHP-5.1
Marcus Boerger 22 years ago
parent
commit
eeb4e150e7
  1. 4
      ext/spl/examples/dbareader.inc

4
ext/spl/examples/dbareader.inc

@ -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();
}
/**

Loading…
Cancel
Save