helly Fri Aug 27 16:38:16 2004 EDT
Modified files:
/php-src/ext/spl/examples dbareader.inc
Log:
Fix by (mathieu dot bruneau at argontechnologies dot ca)
http://cvs.php.net/diff.php/php-src/ext/spl/examples/dbareader.inc?r1=1.3&r2=1.4&ty=u
Index: php-src/ext/spl/examples/dbareader.inc
diff -u php-src/ext/spl/examples/dbareader.inc:1.3
php-src/ext/spl/examples/dbareader.inc:1.4
--- php-src/ext/spl/examples/dbareader.inc:1.3 Wed Jul 28 18:52:11 2004
+++ php-src/ext/spl/examples/dbareader.inc Fri Aug 27 16:38:15 2004
@@ -45,7 +45,7 @@
*/
function rewind() {
$this->key = dba_firstkey($this->db);
- fetch_data();
+ $this->fetch_data();
}
/**
@@ -55,7 +55,7 @@
*/
function next() {
$this->key = dba_nextkey($this->db);
- fetch_data();
+ $this->fetch_data();
}
/**
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php