From: Date: Sat, 6 Mar 2004 01:32:09 +0000 (+0000) Subject: ChangeLog update X-Git-Tag: RELEASE_0_2_0~43 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e37f4db03dde8aa927d5e6e5919ed261f1d01c91;p=php ChangeLog update --- diff --git a/ChangeLog b/ChangeLog index 86228eebfc..cda14186b9 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 b1ec12abd3..1e390f0d96 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: