dmitry          Mon Feb 20 10:29:35 2006 UTC

  Modified files:              
    /php-src/ext/dom    dom_iterators.c 
  Log:
  Fixed start inex in iterator
  
  
http://cvs.php.net/viewcvs.cgi/php-src/ext/dom/dom_iterators.c?r1=1.14&r2=1.15&diff_format=u
Index: php-src/ext/dom/dom_iterators.c
diff -u php-src/ext/dom/dom_iterators.c:1.14 
php-src/ext/dom/dom_iterators.c:1.15
--- php-src/ext/dom/dom_iterators.c:1.14        Mon Feb 13 10:23:57 2006
+++ php-src/ext/dom/dom_iterators.c     Mon Feb 20 10:29:35 2006
@@ -17,7 +17,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: dom_iterators.c,v 1.14 2006/02/13 10:23:57 dmitry Exp $ */
+/* $Id: dom_iterators.c,v 1.15 2006/02/20 10:29:35 dmitry Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include "config.h"
@@ -187,7 +187,7 @@
        dom_object *intern;
        dom_object *nnmap;
        dom_nnodemap_object *objmap;
-       int ret, previndex=1;
+       int ret, previndex=0;
        HashTable *nodeht;
        zval **entry;
 

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to