From eeb4e150e7e1ba60f2fbfe0bc213e2e3fd2e165b Mon Sep 17 00:00:00 2001 From: Marcus Boerger Date: Fri, 27 Aug 2004 20:38:15 +0000 Subject: [PATCH] Fix by (mathieu dot bruneau at argontechnologies dot ca) --- ext/spl/examples/dbareader.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/spl/examples/dbareader.inc b/ext/spl/examples/dbareader.inc index cd27ad7baa8..bc3ee83a300 100755 --- a/ext/spl/examples/dbareader.inc +++ b/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(); } /**