]> granicus.if.org Git - php/commitdiff
ChangeLog update
author <changelog@php.net> <>
Fri, 21 May 2004 00:39:44 +0000 (00:39 +0000)
committer <changelog@php.net> <>
Fri, 21 May 2004 00:39:44 +0000 (00:39 +0000)
ChangeLog
Zend/ChangeLog

index b124fa0da179421b459b2eaa5f6ded5f316a96b6..b9b5bcd23f935d06a55c55b299fc8fb83f392936 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,67 @@
+2004-05-20  Ilia Alshanetsky  <ilia@prohost.org>
+
+    * ext/gd/gd.c:
+      Fixed stream leak on error.
+
+2004-05-20  Andrey Hristov  <php@hristov.com>
+
+    * ext/standard/var.c:
+      for now removing ":public". Waiting for a decision? ":public" will require
+      quite a lot of phpt files changes.
+
+    * ext/dom/tests/dom003.phpt
+      ext/standard/tests/array/007.phpt
+      ext/standard/tests/array/array_intersect_1.phpt:
+      fixing the tests so to work with the new var_dump() (dumping private and
+      protected member variables)
+
+2004-05-20  Wez Furlong  <wez.php@thebrainroom.net>
+
+    * ZendEngine2/zend_exceptions.c
+      ZendEngine2/zend_exceptions.h:
+      Revert; obviously I missed the function at the bottom of the file...
+
+2004-05-20  Andrey Hristov  <php@hristov.com>
+
+    * ext/standard/var.c:
+      var_dump() now shows private and protected member variables.
+      Not BC is that since now the public variables are explicitly shown as
+      public
+      Example :
+      
+      class a{ protected $a=1; private $b=2;var $c=3;} $a=new a(); var_dump($a);
+      
+      object(a)#1 (3) {
+        ["a:protected"]=>
+        int(1)
+        ["b:private"]=>
+        int(2)
+        ["c:public"]=>
+        int(3)
+      }
+
+2004-05-20  Wez Furlong  <wez.php@thebrainroom.net>
+
+    * ZendEngine2/zend_exceptions.c
+      ZendEngine2/zend_exceptions.h:
+      Export this, so extensions may throw their own exception objects that
+      they have already instantiated.
+
+2004-05-20  Derick Rethans  <php@derickrethans.nl>
+
+    * ext/fam/fam.c
+      ext/ncurses/ncurses.c:
+      - Removed unused INI sections.
+
+    * main/main.c:
+      - Allow extra parameters to mail to be forced also from virtual host
+      settings.
+
+2004-05-20  Ilia Alshanetsky  <ilia@prohost.org>
+
+    * ext/pfpro/pfpro.c:
+      Free vars before calling E_ERROR.
+
 2004-05-19  Ard Biesheuvel  <a.k.biesheuvel@ewi.tudelft.nl>
 
     * ext/standard/formatted_print.c:
index 8f7a36b8ecdc35bb3764ea1bfbce389fa60a3c63..5c294de713ee24bdf3bd089eb0534ee269305670 100644 (file)
@@ -1,3 +1,14 @@
+2004-05-20  Wez Furlong  <wez.php@thebrainroom.net>
+
+    * zend_exceptions.c
+      zend_exceptions.h:
+      Revert; obviously I missed the function at the bottom of the file...
+
+    * zend_exceptions.c
+      zend_exceptions.h:
+      Export this, so extensions may throw their own exception objects that
+      they have already instantiated.
+
 2004-05-18  Marcus Boerger  <marcus.boerger@post.rwth-aachen.de>
 
     * zend_API.c: