This patches fixes a simple error in the dbareader.inc files. Enjoy -- Math aka ROunofF
====== argontechnologies.ca
Index: dbareader.inc =================================================================== RCS file: /repository/php-src/ext/spl/examples/dbareader.inc,v retrieving revision 1.3 diff -u -h -r1.3 dbareader.inc --- dbareader.inc 28 Jul 2004 22:52:11 -0000 1.3 +++ dbareader.inc 27 Aug 2004 20:26:59 -0000 @@ -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(); }
/** @@ -93,4 +93,4 @@ } }
-?> \ No newline at end of file +?>
-- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php