From: Marcus Boerger Date: Fri, 27 Aug 2004 20:39:17 +0000 (+0000) Subject: MFH: Fix by (mathieu dot bruneau at argontechnologies dot ca) X-Git-Tag: php-5.0.2RC1~72 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1d87b343754d785f41987cf5e10577d12ad24a3c;p=php MFH: Fix by (mathieu dot bruneau at argontechnologies dot ca) --- diff --git a/ext/spl/examples/dbareader.inc b/ext/spl/examples/dbareader.inc index cd27ad7baa..bc3ee83a30 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(); } /**