From e37f4db03dde8aa927d5e6e5919ed261f1d01c91 Mon Sep 17 00:00:00 2001 From: Date: Sat, 6 Mar 2004 01:32:09 +0000 Subject: [PATCH] ChangeLog update --- ChangeLog | 32 ++++++++++++++++++++++++++++++++ Zend/ChangeLog | 23 +++++++++++++++++++++++ 2 files changed, 55 insertions(+) diff --git a/ChangeLog b/ChangeLog index 86228eebfcb..cda14186b9c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,35 @@ +2004-03-05 Andi Gutmans + + * 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('1'); + /* 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 + + * 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 * sapi/cli/php_cli.c: diff --git a/Zend/ChangeLog b/Zend/ChangeLog index b1ec12abd36..1e390f0d969 100644 --- a/Zend/ChangeLog +++ b/Zend/ChangeLog @@ -1,3 +1,26 @@ +2004-03-05 Andi Gutmans + + * zend_compile.c: + - Fix some small problems I introduce in last patch. + + * zend_compile.c: + - Finally fix the following: + $xml_mem = + simplexml_load_string('1'); + /* 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-04 Moriyoshi Koizumi * zend_language_scanner.l: