helly           Fri Aug 27 16:39:17 2004 EDT

  Modified files:              (Branch: PHP_5_0)
    /php-src/ext/spl/examples   dbareader.inc 
  Log:
  MFH: Fix by (mathieu dot bruneau at argontechnologies dot ca)
  
http://cvs.php.net/diff.php/php-src/ext/spl/examples/dbareader.inc?r1=1.2.2.1&r2=1.2.2.2&ty=u
Index: php-src/ext/spl/examples/dbareader.inc
diff -u php-src/ext/spl/examples/dbareader.inc:1.2.2.1 
php-src/ext/spl/examples/dbareader.inc:1.2.2.2
--- php-src/ext/spl/examples/dbareader.inc:1.2.2.1      Wed Jul 28 18:55:26 2004
+++ php-src/ext/spl/examples/dbareader.inc      Fri Aug 27 16:39:17 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

Reply via email to