From: Date: Wed, 3 Mar 2004 01:33:18 +0000 (+0000) Subject: ChangeLog update X-Git-Tag: RELEASE_0_2_0~70 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ef39d84bbb9a336f58a78325a5c5da949b1bfd18;p=php ChangeLog update --- diff --git a/ChangeLog b/ChangeLog index 5d59b6e5d7..1241d833b8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,97 @@ +2004-03-02 Moriyoshi Koizumi + + * ext/mbstring/config.w32: + - proper DLL linkage specifier. + + +2004-03-02 Derick Rethans + + * NEWS + ext/gd/libgd/gd.c: + - Fixed bug in gdImageFilledRectangle in the bundled GD library, that + required + x1 < x2 and y1 < y2 for coordinates. + + * tests/classes/bug27468.phpt: + - Fixed timing issues in test + + * tests/classes/bug27468.phpt: + - Added testcase for bug #27468 + +2004-03-02 Moriyoshi Koizumi + + * ext/mbstring/config.w32: + - Fix typo. + +2004-03-02 Derick Rethans + + * ext/tokenizer/tokenizer.c: + - CLONE, not CLOSE + + * ext/tokenizer/tokenizer.c: + - Added "clone" to the list of tokens. (Patch by Greg Beaver) + +2004-03-02 Marcus Boerger + + * ZendEngine2/zend_API.c + ZendEngine2/zend_API.h: + Fix zend_parse_method_parameters_ex() and make it consistant with + zend_parse_method_parameters(). + +2004-03-02 Derick Rethans + + * tests/lang/bug27439.phpt: + - Consistent naming + +2004-03-02 Pierre-Alain Joye + + * tests/lang/bug27439.phpt: + - initial test for #27439, covers more cases we got during + foreach($this->foo as $bar) bug + +2004-03-02 Moriyoshi Koizumi + + * ext/mbstring/config.w32: + - Really fix the build. + +2004-03-02 Derick Rethans + + * ext/standard/parsedate.y: + - Fixed yacc file + +2004-03-02 Edin Kadribasic + + * ext/mbstring/config.w32: + Temporary fix for win32 build + +2004-03-02 Andi Gutmans + + * ZendEngine2/zend_compile.c: + - Fix leaks (although there might be still a problem here). + + * ZendEngine2/zend_execute.c: + - Fix leak (Dmitry) + + * ZendEngine2/zend_compile.c: + - Fix crash in: + attributes as $name => $attr) { + } + } + } + + $f= new Foo(); + $f->export(); + ?> + + * ZendEngine2/zend_objects.c: + - Improve fix for protecting destructor's from exceptions. + - I was killing the current exception completely which was wrong. + 2004-03-01 Moriyoshi Koizumi * ext/mbstring/config.w32: diff --git a/Zend/ChangeLog b/Zend/ChangeLog index 25046f9e7f..c21b261c25 100644 --- a/Zend/ChangeLog +++ b/Zend/ChangeLog @@ -1,3 +1,38 @@ +2004-03-02 Marcus Boerger + + * zend_API.c + zend_API.h: + Fix zend_parse_method_parameters_ex() and make it consistant with + zend_parse_method_parameters(). + +2004-03-02 Andi Gutmans + + * zend_compile.c: + - Fix leaks (although there might be still a problem here). + + * zend_execute.c: + - Fix leak (Dmitry) + + * zend_compile.c: + - Fix crash in: + attributes as $name => $attr) { + } + } + } + + $f= new Foo(); + $f->export(); + ?> + + * zend_objects.c: + - Improve fix for protecting destructor's from exceptions. + - I was killing the current exception completely which was wrong. + 2004-03-01 Andi Gutmans * zend_objects.c: