From: Date: Thu, 30 Jan 2003 01:32:27 +0000 (+0000) Subject: ChangeLog update X-Git-Tag: RELEASE_0_5~1366 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e3672e49fc70e3d26b046d062cf3acc6dd06e54a;p=php ChangeLog update --- diff --git a/ChangeLog b/ChangeLog index fc17818921..23a731abc9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,58 @@ +2003-01-29 Stig Bakken + + * pear/PEAR/Installer.php: + - Windows fix (thanks to paj) + +2003-01-29 Ilia Alshanetsky + + * ext/informix/ifx.ec: + Added sanity checks. + +2003-01-29 Maxim Maletsky + + * ext/oci8/CREDITS + ext/oci8/oci8.c: + Added myself to the maintainers list. + +2003-01-29 Edin Kadribasic + + * sapi/embed/php_embed.c: + Be more consistent with the sapi internal name. + + * ext/standard/dl.c: + Enable embedded code using sapi/embed to use dl(). + +2003-01-29 Jani Taskinen + + * (PHP_4_3) + NEWS: + ordered all bug fixes by the number :) + + * NEWS: + NEWS police is back. + + * (PHP_4_3) + NEWS: + news entries for new options in phpize and php-config + +2003-01-29 Harald Radi + + * ext/standard/basic_functions.c + main/main.c: + MFPHP_4_3 + + * (PHP_4_3) + main/main.c: + ilia pointet me to a thread on php-dev saying that + Co(Un)Initialize should be called per thread + +2003-01-29 Ilia Alshanetsky + + * ext/standard/basic_functions.c + ext/standard/php_string.h: + Added part of strpos commit that never made it in for some reason. + + 2003-01-28 Harald Radi * (PHP_4_3) diff --git a/Zend/ChangeLog b/Zend/ChangeLog index 9dd562ecf2..b276dce555 100644 --- a/Zend/ChangeLog +++ b/Zend/ChangeLog @@ -1,3 +1,46 @@ +2003-01-29 Stanislav Malyshev + + * zend_compile.h + zend_execute_API.c + zend_opcode.c: + Add additional stage to post-session cleanup. + We need separate cleanup stage because of the following problem: + Suppose we destroy class X, which destroys function table, + and in function table we have function foo() that has static $bar. Now if + object of class X was assigned to $bar, its destructor will be called and + will + fail since X's function table is in mid-destruction. + So we want first of all to clean up all data and then move to tables + destruction. + Note that only run-time accessed data need to be cleaned up, pre-defined + data can not contain objects and thus are not probelmatic. + +2003-01-29 Zeev Suraski + + * zend_execute.c + zend_object_handlers.c: + Code rearrangements + +2003-01-29 Stanislav Malyshev + + * zend_execute_API.c: + Fix object destructors: + zend_objects_store_call_destructors is not used anymore, we rely on + symbol tables cleaners to destroy all objects. + + * zend_objects_API.c: + extra safety + + * zend_compile.c: + fix memory leak + +2003-01-29 Zeev Suraski + + * zend_execute.c + zend_object_handlers.c: + Fix assignments to $this. + Fixes the 'make install' problem reported on php-dev + 2003-01-28 Zeev Suraski * zend_compile.c: