From: Date: Fri, 21 May 2004 00:39:44 +0000 (+0000) Subject: ChangeLog update X-Git-Tag: RELEASE_0_1~35 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3d9c47eed09327d2f73ea365980595ed43e92edd;p=php ChangeLog update --- diff --git a/ChangeLog b/ChangeLog index b124fa0da1..b9b5bcd23f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,67 @@ +2004-05-20 Ilia Alshanetsky + + * ext/gd/gd.c: + Fixed stream leak on error. + +2004-05-20 Andrey Hristov + + * 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 + + * 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 + + * 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 + + * 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 + + * 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 + + * ext/pfpro/pfpro.c: + Free vars before calling E_ERROR. + 2004-05-19 Ard Biesheuvel * ext/standard/formatted_print.c: diff --git a/Zend/ChangeLog b/Zend/ChangeLog index 8f7a36b8ec..5c294de713 100644 --- a/Zend/ChangeLog +++ b/Zend/ChangeLog @@ -1,3 +1,14 @@ +2004-05-20 Wez Furlong + + * 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 * zend_API.c: