1
0
mirror of https://github.com/php/php-src.git synced 2026-04-29 19:23:22 +02:00

ChangeLog update

This commit is contained in:
2003-01-30 01:32:27 +00:00
parent 62db0b4854
commit e3672e49fc
2 changed files with 98 additions and 0 deletions
+55
View File
@@ -1,3 +1,58 @@
2003-01-29 Stig Bakken <ssb@fast.no>
* pear/PEAR/Installer.php:
- Windows fix (thanks to paj)
2003-01-29 Ilia Alshanetsky <ilia@prohost.org>
* ext/informix/ifx.ec:
Added sanity checks.
2003-01-29 Maxim Maletsky <maxim@maxim.cx>
* ext/oci8/CREDITS
ext/oci8/oci8.c:
Added myself to the maintainers list.
2003-01-29 Edin Kadribasic <edink@proventum.net>
* 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 <sniper@iki.fi>
* (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 <harald.radi+coding.php@nme.at>
* 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 <ilia@prohost.org>
* 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 <harald.radi+coding.php@nme.at>
* (PHP_4_3)
+43
View File
@@ -1,3 +1,46 @@
2003-01-29 Stanislav Malyshev <stas@zend.com>
* 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 <zeev@zend.com>
* zend_execute.c
zend_object_handlers.c:
Code rearrangements
2003-01-29 Stanislav Malyshev <stas@zend.com>
* 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 <zeev@zend.com>
* 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 <zeev@zend.com>
* zend_compile.c: