changelog Thu May 20 20:39:19 2004 EDT
Modified files: /php-src ChangeLog Log: ChangeLog update http://cvs.php.net/diff.php/php-src/ChangeLog?r1=1.1633&r2=1.1634&ty=u Index: php-src/ChangeLog diff -u php-src/ChangeLog:1.1633 php-src/ChangeLog:1.1634 --- php-src/ChangeLog:1.1633 Wed May 19 20:33:36 2004 +++ php-src/ChangeLog Thu May 20 20:39:10 2004 @@ -1,3 +1,67 @@ +2004-05-20 Ilia Alshanetsky <[EMAIL PROTECTED]> + + * ext/gd/gd.c: + Fixed stream leak on error. + +2004-05-20 Andrey Hristov <[EMAIL PROTECTED]> + + * 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 <[EMAIL PROTECTED]> + + * 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 <[EMAIL PROTECTED]> + + * 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 <[EMAIL PROTECTED]> + + * 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 <[EMAIL PROTECTED]> + + * 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 <[EMAIL PROTECTED]> + + * ext/pfpro/pfpro.c: + Free vars before calling E_ERROR. + 2004-05-19 Ard Biesheuvel <[EMAIL PROTECTED]> * ext/standard/formatted_print.c: @@ -3627,7 +3691,7 @@ 2004-03-18 Pierre-Alain Joye <[EMAIL PROTECTED]> * ext/gd/tests/bug27582_2.phpt: - - Fix the test description and $Id: ChangeLog,v 1.1633 2004/05/20 00:33:36 changelog Exp $ + - Fix the test description and $Id: ChangeLog,v 1.1634 2004/05/21 00:39:10 changelog Exp $ 2004-03-18 Derick Rethans <[EMAIL PROTECTED]>