changelog Fri Mar 5 20:32:07 2004 EDT
Modified files:
/php-src ChangeLog
Log:
ChangeLog update
http://cvs.php.net/diff.php/php-src/ChangeLog?r1=1.1558&r2=1.1559&ty=u
Index: php-src/ChangeLog
diff -u php-src/ChangeLog:1.1558 php-src/ChangeLog:1.1559
--- php-src/ChangeLog:1.1558 Thu Mar 4 20:31:56 2004
+++ php-src/ChangeLog Fri Mar 5 20:32:06 2004
@@ -1,3 +1,35 @@
+2004-03-05 Andi Gutmans <[EMAIL PROTECTED]>
+
+ * ZendEngine2/zend_compile.c:
+ - Fix some small problems I introduce in last patch.
+
+ * ZendEngine2/zend_compile.c:
+ - Finally fix the following:
+ $xml_mem =
+
simplexml_load_string('<bookbody><part><chapter><page>1</page></chapter></part></bookbody>');
+ /* The following works fine */
+ foreach ($xml_mem->part as $part) {
+ foreach($part->chapter->page as $page) {
+ print $page;
+ }
+ }
+ /* The following segfaults */
+ foreach ($xml_mem->part as $part) {
+ foreach($part->chapter as $chapter) { // Difference here from previous
+ example
+ print $chapter;
+ }
+ }
+
+2004-03-05 Dmitry Stogov <[EMAIL PROTECTED]>
+
+ * tests/classes/ctor_dtor.phpt
+ tests/classes/inheritance_002.phpt:
+ Test files were fixed acording to new constructor redeclaration semantic
+
+ * tests/classes/bug27468.phpt:
+ Test file was fixed (stack trace is removed)
+
2004-03-04 Moriyoshi Koizumi <[EMAIL PROTECTED]>
* sapi/cli/php_cli.c: