From: Date: Sat, 17 Dec 2005 06:31:58 +0000 (+0000) Subject: ChangeLog update X-Git-Tag: RELEASE_1_0_4~356 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6ddfecd65a7b05ab05c7d0f5c413914a76b92201;p=php ChangeLog update --- diff --git a/ChangeLog b/ChangeLog index 6f4f887356..56cc524ba8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,121 @@ +2005-12-16 Marcus Boerger + + * ZendEngine2/zend_API.h: + - Add new const + + * ZendEngine2/zend_language_parser.y: + - WS + + * ZendEngine2/tests/bug29210.phpt + ZendEngine2/tests/bug32290.phpt + ext/standard/tests/general_functions/bug32647.phpt + tests/classes/bug27504.phpt: + - MFB + +2005-12-16 Ilia Alshanetsky + + * (PHP_5_1) + NEWS: + Fixed bug #35705 (strtotime() fails to parse soap date format without TZ). + +2005-12-16 Antony Dovgal + + * (PHP_5_1) + ZendEngine2/zend_alloc.h: + fix compile warning with Apache2 and Zend VM disabled + (someone forgot to do MFH) + +2005-12-16 Marcus Boerger + + * ext/standard/basic_functions.c: + - MFB Fix zend_is_callable() usage + + * (PHP_5_1) + ZendEngine2/tests/bug29210.phpt + ZendEngine2/tests/bug32290.phpt + ext/standard/tests/general_functions/bug32647.phpt + tests/classes/bug27504.phpt: + - Add/fix tests + + * (PHP_5_1) + ext/standard/basic_functions.c: + - Fix is_callable usage + + * (PHP_5_1) + ZendEngine2/zend_API.c + ZendEngine2/zend_API.h + ZendEngine2/zend_execute_API.c: + - Simplify and synch is_callable_ex() with actual execution code + . Allow array($this, 'parent::method') for function 'pointers' + . Spit out E_STRICT in case of erroneous use of function 'pointers' + +2005-12-16 Antony Dovgal + + * ext/standard/basic_functions.c: + MF51: fix #35713 (getopt() returns array with numeric strings when passed + options like '-1') + + TODO: + make getopt() unicode aware + + * (PHP_5_1) + NEWS + ext/standard/basic_functions.c: + fix #35713 (getopt() returns array with numeric strings when passed options + like '-1') + +2005-12-16 Pierre-Alain Joye + + * ext/gd/config.m4 + ext/gd/config.w32 + ext/gd/gd.c + ext/gd/gd.dsp: + - remove HAVE_LIBGD15, always set + + * ext/gd/gd.c + ext/gd/tests/copypalette.phpt + ext/gd/tests/createfromstring.phpt + ext/gd/tests/src.png: + - fix leaks and wrong error when invalid/empty string are given to + imagecreatefromstring + - add test for imagecreatefromstring + - add test for palettecopy + + * ext/gd/config.m4 + ext/gd/config.w32 + ext/gd/gd.c + ext/gd/gd.dsp + ext/gd/tests/colorat.phpt: + - adieu HAVE_LIBGD13 + - add imagecolorat tests (truecolor and palette) + +2005-12-16 Antony Dovgal + + * ext/standard/tests/array/bug35014.phpt + ext/standard/tests/array/bug35014_64bit.phpt: + MF51: fix test, add new one + + * (PHP_5_1) + ext/standard/tests/array/bug35014.phpt + ext/standard/tests/array/bug35014_64bit.phpt + ext/standard/tests/array/bug35014_64bit.phpt: + fix test + add new one for 64bit only + + * (PHP_5_1) + ext/dom/tests/dom_set_attr_node.phpt + ext/mbstring/tests/mb_strcut.phpt: + fix test + + * ext/dom/tests/dom_set_attr_node.phpt: + fix test + this linenumber may vary + + * ext/mbstring/mbstring.c + ext/mbstring/tests/mb_strcut.phpt: + MF51 Ilia's last fix + fix the test appropriately + 2005-12-15 Ilia Alshanetsky * ext/sysvsem/sysvsem.c: diff --git a/Zend/ChangeLog b/Zend/ChangeLog index 0b9f302280..859f412ecf 100644 --- a/Zend/ChangeLog +++ b/Zend/ChangeLog @@ -1,3 +1,37 @@ +2005-12-16 Marcus Boerger + + * zend_API.h: + - Add new const + + * zend_language_parser.y: + - WS + + * tests/bug29210.phpt + tests/bug32290.phpt: + - MFB + +2005-12-16 Antony Dovgal + + * (PHP_5_1) + zend_alloc.h: + fix compile warning with Apache2 and Zend VM disabled + (someone forgot to do MFH) + +2005-12-16 Marcus Boerger + + * (PHP_5_1) + tests/bug29210.phpt + tests/bug32290.phpt: + - Add/fix tests + + * (PHP_5_1) + zend_API.c + zend_API.h + zend_execute_API.c: + - Simplify and synch is_callable_ex() with actual execution code + . Allow array($this, 'parent::method') for function 'pointers' + . Spit out E_STRICT in case of erroneous use of function 'pointers' + 2005-12-13 Antony Dovgal * (PHP_5_1)