]> granicus.if.org Git - php/commitdiff
ChangeLog update
author <changelog@php.net> <>
Thu, 30 Jan 2003 01:32:27 +0000 (01:32 +0000)
committer <changelog@php.net> <>
Thu, 30 Jan 2003 01:32:27 +0000 (01:32 +0000)
ChangeLog
Zend/ChangeLog

index fc1781892191a80bd72cb407ef29eea9ea6b5672..23a731abc9d13d792c03a648b359677bffe6cf79 100644 (file)
--- 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)
index 9dd562ecf2d3a731db8115ae55288da8e521430c..b276dce5550ca014b3193b8cf9bbcf6ffb447055 100644 (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: