From: Date: Fri, 5 Mar 2004 01:31:59 +0000 (+0000) Subject: ChangeLog update X-Git-Tag: RELEASE_0_2_0~48 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c851067bf94a98e7a1cca2b9a317f52ceb39bd91;p=php ChangeLog update --- diff --git a/ChangeLog b/ChangeLog index 60c25a0700..86228eebfc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,74 @@ +2004-03-04 Moriyoshi Koizumi + + * sapi/cli/php_cli.c: + - typo (must have sleep.) + + * ZendEngine2/zend_language_scanner.l: + - Fix memleak when scanner is called from within tokenizer extension. + + * sapi/cli/php_cli.c: + - Prevent cli from printing multiple "Interactive mode enabled" if + the command line option is given more than once (like -aaaaaa). + +2004-03-04 Sara Golemon + + * (PHP_4_3) + ext/ftp/ftp.c: + MFH: Don't rely on ANSI tmpfile(), use the streams layer instead, it'll + deal with platform issues. + + * ext/ftp/ftp.c: + Don't rely on ANSI tmpfile(), use the streams layer instead, it'll deal + with platform issues. + +2004-03-04 Derick Rethans + + * EXTENSIONS: + - No maintainer anymore. + +2004-03-04 Christian Stocker + + * (PHP_4_3) + pear/PEAR/Builder.php: + MFH (fix a linefeed problem, if more than one configureoption) + + * pear/PEAR/Builder.php: + - fix a linefeed problem, if there are more than one configureoption + +2004-03-04 Stanislav Malyshev + + * ZendEngine2/zend_execute.h: + fix the fix + + * ZendEngine2/zend_execute.h: + oops, fix cut&paste gone bad + + * ZendEngine2/zend_execute.h: + Fix object true value: if we are in compat mode and it's Zend object - + use PHP4 rules. Otherwise, object is always true. + +2004-03-04 Derick Rethans + + * ZendEngine2/zend_constants.h + ZendEngine2/zend_operators.h: + - Fixed a 64bit issue (for zend_builtin_functions.c, module_number is an + int). + - Change the MAX_LENGTH_OF_LONG constant to 20, as LONG_MAX is 20 + characters. + (Patches by Ard Biesheuven) + + * ZendEngine2/tests/zend_operators.phpt: + - Added instance_of test (patch by Ard Biesheuvel) + +2004-03-04 Stanislav Malyshev + + * ZendEngine2/zend_compile.c: + Disallow redefining ctors and cleanup + + * ZendEngine2/zend_mm.c: + Handle out of memory/bad size situation gracefully, without getting into + loop + 2004-03-03 Rob Richards * ext/dom/document.c: diff --git a/Zend/ChangeLog b/Zend/ChangeLog index 8f904d1f48..b1ec12abd3 100644 --- a/Zend/ChangeLog +++ b/Zend/ChangeLog @@ -1,3 +1,42 @@ +2004-03-04 Moriyoshi Koizumi + + * zend_language_scanner.l: + - Fix memleak when scanner is called from within tokenizer extension. + +2004-03-04 Stanislav Malyshev + + * zend_execute.h: + fix the fix + + * zend_execute.h: + oops, fix cut&paste gone bad + + * zend_execute.h: + Fix object true value: if we are in compat mode and it's Zend object - + use PHP4 rules. Otherwise, object is always true. + +2004-03-04 Derick Rethans + + * zend_constants.h + zend_operators.h: + - Fixed a 64bit issue (for zend_builtin_functions.c, module_number is an + int). + - Change the MAX_LENGTH_OF_LONG constant to 20, as LONG_MAX is 20 + characters. + (Patches by Ard Biesheuven) + + * tests/zend_operators.phpt: + - Added instance_of test (patch by Ard Biesheuvel) + +2004-03-04 Stanislav Malyshev + + * zend_compile.c: + Disallow redefining ctors and cleanup + + * zend_mm.c: + Handle out of memory/bad size situation gracefully, without getting into + loop + 2004-03-03 Andi Gutmans * zend_objects_API.c: