summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author <changelog@php.net>2003-01-30 01:32:27 +0000
committer <changelog@php.net>2003-01-30 01:32:27 +0000
commite3672e49fc70e3d26b046d062cf3acc6dd06e54a (patch)
treee3da23c9e74a02a98863d0ee0571a5d8b2386d75
parent62db0b48546321f313e64ca9276338331c4770e6 (diff)
downloadphp-git-e3672e49fc70e3d26b046d062cf3acc6dd06e54a.tar.gz
ChangeLog update
-rw-r--r--ChangeLog55
-rw-r--r--Zend/ChangeLog43
2 files changed, 98 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index fc17818921..23a731abc9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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)
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 <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: