From: Date: Mon, 29 Mar 2004 01:32:05 +0000 (+0000) Subject: ChangeLog update X-Git-Tag: php-5.0.0RC2RC1~176 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=31b042714ede6b83119176f40654e5a60986a425;p=php ChangeLog update --- diff --git a/ChangeLog b/ChangeLog index 302deefbd4..3972192fe2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,103 @@ +2004-03-28 Marcus Boerger + + * 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 + + * ZendEngine2/zend_language_parser.y: + check writability on =& too + +2004-03-28 Marcus Boerger + + * ext/xsl/xsltprocessor.c: + Fix XSL (Rob/Marcus) + +2004-03-28 Rasmus Lerdorf + + * 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 + + * 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 + + * 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 + + * 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 + + * ZendEngine2/zend_execute_API.c: + fix of fix related to __autoload. (ext/standard/tests/network/bug20134.phpt + passes again) + +2004-03-28 Andrey Hristov + + * 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 * tests/classes/type_hinting_002.phpt: diff --git a/Zend/ChangeLog b/Zend/ChangeLog index 8f79c32c8d..46a573c17b 100644 --- a/Zend/ChangeLog +++ b/Zend/ChangeLog @@ -1,3 +1,51 @@ +2004-03-28 Marcus Boerger + + * zend_API.c: + Use lowercasing here + + * zend.c: + Initialize the complete struct + +2004-03-28 Stanislav Malyshev + + * 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 + + * zend_reflection_api.c: + Fix memleak found by Timm + +2004-03-28 Stanislav Malyshev + + * 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 + + * zend_execute_API.c: + fix of fix related to __autoload. (ext/standard/tests/network/bug20134.phpt + passes again) + 2004-03-27 Marcus Boerger * zend.c: