]> granicus.if.org Git - php/commitdiff
ChangeLog update
author <changelog@php.net> <>
Sat, 6 Mar 2004 01:32:09 +0000 (01:32 +0000)
committer <changelog@php.net> <>
Sat, 6 Mar 2004 01:32:09 +0000 (01:32 +0000)
ChangeLog
Zend/ChangeLog

index 86228eebfcb6d06585eaf4ee9073c154ca6b57fd..cda14186b9c6c41ff8a064dce10769637273c8e2 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,35 @@
+2004-03-05  Andi Gutmans  <andi@zend.com>
+
+    * 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  <dmitry@zend.com>
+
+    * 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  <moriyoshi@at.wakwak.com>
 
     * sapi/cli/php_cli.c:
index b1ec12abd369c3409629a0d791ded1abffe31ad8..1e390f0d969f867145ed5b2a1d61343f4c9579b2 100644 (file)
@@ -1,3 +1,26 @@
+2004-03-05  Andi Gutmans  <andi@zend.com>
+
+    * zend_compile.c:
+      - Fix some small problems I introduce in last patch.
+
+    * 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-04  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>
 
     * zend_language_scanner.l: