1
0
mirror of https://github.com/php/php-src.git synced 2026-04-29 03:03:26 +02:00

ChangeLog update

This commit is contained in:
2004-05-21 00:39:44 +00:00
parent 9cccfa57b6
commit 3d9c47eed0
2 changed files with 75 additions and 0 deletions
+64
View File
@@ -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:
+11
View 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: