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

index 302deefbd4c42f42e1ee627d758ccecdcb1db3b5..3972192fe2001804dacdc81c3fdd865e701780a5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,103 @@
+2004-03-28  Marcus Boerger  <marcus.boerger@post.rwth-aachen.de>
+
+    * ZendEngine2/zend_API.c:
+      Use lowercasing here
+
+    * run-tests.php:
+      Add ability to pass -n to the executed php
+
+    * ext/standard/basic_functions.c:
+      Improve portability (idea by Ard)
+
+    * ZendEngine2/zend.c:
+      Initialize the complete struct
+
+    * ext/simplexml/CREDITS
+      ext/simplexml/simplexml.c
+      ext/sqlite/CREDITS
+      ext/sqlite/sqlite.c
+      ext/standard/credits_ext.h:
+      Fix writing of SQLite and SimpleXMl extension and add Rob to the credits
+      line of the latter. Add ext/SPL.
+
+2004-03-28  Stanislav Malyshev  <stas@zend.com>
+
+    * ZendEngine2/zend_language_parser.y:
+      check writability on =& too
+
+2004-03-28  Marcus Boerger  <marcus.boerger@post.rwth-aachen.de>
+
+    * ext/xsl/xsltprocessor.c:
+      Fix XSL (Rob/Marcus)
+
+2004-03-28  Rasmus Lerdorf  <rasmus@lerdorf.com>
+
+    * NEWS
+      ext/standard/datetime.c
+      ext/standard/tests/time/bug27719.phpt:
+      MFB test case for bug #27719 and improve comments in this tricky DST code
+
+    * (PHP_4_3)
+      NEWS
+      ext/session/session.c
+      ext/standard/datetime.c
+      ext/standard/head.c
+      ext/standard/tests/time/bug27719.phpt:
+      - Merge whitespace and trivial changes from HEAD back to the branch so the
+        diff between HEAD and PHP_4_3 only shows feature changes
+      - Fix test case for bug #27719 (TZ=EST means no DST so the test was wrong)
+
+2004-03-28  Stanislav Malyshev  <stas@zend.com>
+
+    * ZendEngine2/zend_execute.c:
+      - call set handler if assigning to object having this handler
+      - cleanup: use macros to access object internal vars
+
+    * ZendEngine2/zend_interfaces.c:
+      preserve ZEND_API in definition
+
+    * ZendEngine2/zend_interfaces.h:
+      declare as extern
+
+2004-03-28  Marcus Boerger  <marcus.boerger@post.rwth-aachen.de>
+
+    * run-tests.php:
+      Show progress
+
+    * tests/classes/tostring.phpt:
+      Adapt ecpectations to 5.0 reality
+
+    * ZendEngine2/zend_reflection_api.c:
+      Fix memleak found by Timm
+
+2004-03-28  Stanislav Malyshev  <stas@zend.com>
+
+    * ZendEngine2/zend_operators.c:
+      centralize object-to-scalar conversion, make it work with get handler
+
+    * ZendEngine2/zend.c:
+      try get handler on printable conversion
+
+    * ZendEngine2/zend_object_handlers.h:
+      some more clear comments
+
+    * ZendEngine2/zend_operators.c:
+      Use macros for object parts access
+
+2004-03-28  Dmitry Stogov  <dmitry@zend.com>
+
+    * ZendEngine2/zend_execute_API.c:
+      fix of fix related to __autoload. (ext/standard/tests/network/bug20134.phpt
+      passes again)
+
+2004-03-28  Andrey Hristov  <php@hristov.com>
+
+    * README.PHP4-TO-PHP5-THIN-CHANGES:
+      - Fixed the explanation and example about "classes must be declared before
+      used".
+      - Added new entry about get_class() (Thanks Lukas for reminding
+      (toStudlyCapOrNotToStudlyCap.txt).
+
 2004-03-27  Marcus Boerger  <marcus.boerger@post.rwth-aachen.de>
 
     * tests/classes/type_hinting_002.phpt:
index 8f79c32c8d855225b6cb88bcf881078af212beb4..46a573c17bcb18e5dc2bda482c35470cb6a9f92d 100644 (file)
@@ -1,3 +1,51 @@
+2004-03-28  Marcus Boerger  <marcus.boerger@post.rwth-aachen.de>
+
+    * zend_API.c:
+      Use lowercasing here
+
+    * zend.c:
+      Initialize the complete struct
+
+2004-03-28  Stanislav Malyshev  <stas@zend.com>
+
+    * zend_language_parser.y:
+      check writability on =& too
+
+    * zend_execute.c:
+      - call set handler if assigning to object having this handler
+      - cleanup: use macros to access object internal vars
+
+    * zend_interfaces.c:
+      preserve ZEND_API in definition
+
+    * zend_interfaces.h:
+      declare as extern
+
+2004-03-28  Marcus Boerger  <marcus.boerger@post.rwth-aachen.de>
+
+    * zend_reflection_api.c:
+      Fix memleak found by Timm
+
+2004-03-28  Stanislav Malyshev  <stas@zend.com>
+
+    * zend_operators.c:
+      centralize object-to-scalar conversion, make it work with get handler
+
+    * zend.c:
+      try get handler on printable conversion
+
+    * zend_object_handlers.h:
+      some more clear comments
+
+    * zend_operators.c:
+      Use macros for object parts access
+
+2004-03-28  Dmitry Stogov  <dmitry@zend.com>
+
+    * zend_execute_API.c:
+      fix of fix related to __autoload. (ext/standard/tests/network/bug20134.phpt
+      passes again)
+
 2004-03-27  Marcus Boerger  <marcus.boerger@post.rwth-aachen.de>
 
     * zend.c: