summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2004-08-27 20:38:15 +0000
committerMarcus Boerger <helly@php.net>2004-08-27 20:38:15 +0000
commiteeb4e150e7e1ba60f2fbfe0bc213e2e3fd2e165b (patch)
tree2b403227eee290a564956e08bb8f1156ce66944a /ext
parentec3aac1e86a423ba5fe4fe4a8a1aa127ffc29c14 (diff)
downloadphp-git-eeb4e150e7e1ba60f2fbfe0bc213e2e3fd2e165b.tar.gz
Fix by (mathieu dot bruneau at argontechnologies dot ca)
Diffstat (limited to 'ext')
-rwxr-xr-xext/spl/examples/dbareader.inc4
1 files changed, 2 insertions, 2 deletions
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();
}
/**