helly Tue Apr 17 06:33:50 2007 UTC
Modified files: (Branch: PHP_5_2)
/php-src NEWS
/php-src/ext/spl spl.php
/php-src/ext/spl/internal recursiveiterator.inc
seekableiterator.inc
Log:
- MFH Fix #41109: recursiveiterator.inc says 'implements' Iterator instead of
'extends'
http://cvs.php.net/viewvc.cgi/php-src/NEWS?r1=1.2027.2.547.2.651&r2=1.2027.2.547.2.652&diff_format=u
Index: php-src/NEWS
diff -u php-src/NEWS:1.2027.2.547.2.651 php-src/NEWS:1.2027.2.547.2.652
--- php-src/NEWS:1.2027.2.547.2.651 Mon Apr 16 22:31:05 2007
+++ php-src/NEWS Tue Apr 17 06:33:50 2007
@@ -1,6 +1,8 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
?? Apr 2007, PHP 5.2.2RC2
+- Fixed bug #41109 (recursiveiterator.inc says "implements" Iterator instead of
+ "extends"). (Marcus)
- Fixed bug #41093 (magic_quotes_gpc ignores first arrays keys). (Arpad, Ilia)
- Fixed bug #41083 (mysql_ping() requires MYSQL_OPT_RECONNECT to be set since
MySQL 5.0.13). (xiaojb at gmail dot com, Tony)
http://cvs.php.net/viewvc.cgi/php-src/ext/spl/spl.php?r1=1.49.2.11.2.5&r2=1.49.2.11.2.6&diff_format=u
Index: php-src/ext/spl/spl.php
diff -u php-src/ext/spl/spl.php:1.49.2.11.2.5
php-src/ext/spl/spl.php:1.49.2.11.2.6
--- php-src/ext/spl/spl.php:1.49.2.11.2.5 Sun Dec 31 18:20:22 2006
+++ php-src/ext/spl/spl.php Tue Apr 17 06:33:50 2007
@@ -32,12 +32,12 @@
*
* SPL offers some advanced iterator algorithms:
*
- * - interface RecursiveIterator implements Iterator
+ * - interface RecursiveIterator extends Iterator
* - interface OuterIterator extends Iterator
* - class RecursiveIteratorIterator implements OuterIterator
* - abstract class FilterIterator implements OuterIterator
* - class ParentIterator extends FilterIterator implements RecursiveIterator
- * - interface SeekableIterator implements Iterator
+ * - interface SeekableIterator extends Iterator
* - class LimitIterator implements OuterIterator
* - class CachingIterator implements OuterIterator
* - class RecursiveCachingIterator extends CachingIterator implements
RecursiveIterator
http://cvs.php.net/viewvc.cgi/php-src/ext/spl/internal/recursiveiterator.inc?r1=1.6&r2=1.6.4.1&diff_format=u
Index: php-src/ext/spl/internal/recursiveiterator.inc
diff -u php-src/ext/spl/internal/recursiveiterator.inc:1.6
php-src/ext/spl/internal/recursiveiterator.inc:1.6.4.1
--- php-src/ext/spl/internal/recursiveiterator.inc:1.6 Thu Feb 17 00:24:57 2005
+++ php-src/ext/spl/internal/recursiveiterator.inc Tue Apr 17 06:33:50 2007
@@ -15,7 +15,7 @@
* @version 1.0
* @since PHP 5.0
*/
-interface RecursiveIterator implements Iterator
+interface RecursiveIterator extends Iterator
{
/** @return whether the current element has children
*/
http://cvs.php.net/viewvc.cgi/php-src/ext/spl/internal/seekableiterator.inc?r1=1.6&r2=1.6.4.1&diff_format=u
Index: php-src/ext/spl/internal/seekableiterator.inc
diff -u php-src/ext/spl/internal/seekableiterator.inc:1.6
php-src/ext/spl/internal/seekableiterator.inc:1.6.4.1
--- php-src/ext/spl/internal/seekableiterator.inc:1.6 Tue Mar 1 23:44:05 2005
+++ php-src/ext/spl/internal/seekableiterator.inc Tue Apr 17 06:33:50 2007
@@ -18,7 +18,7 @@
* to seek on an iterator LimitIterator can use this to efficiently rewind
* to offset.
*/
-interface SeekableIterator implements Iterator
+interface SeekableIterator extends Iterator
{
/** Seek to an absolute position
*
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php