diff options
author | <changelog@php.net> | 2003-03-30 01:30:49 +0000 |
---|---|---|
committer | <changelog@php.net> | 2003-03-30 01:30:49 +0000 |
commit | 46832dbcab77079dedf167a00f9f845aa4e1f95f (patch) | |
tree | 5dceb8ac12386a81acbbeecdf06f1069c3c158e6 | |
parent | 0f3a0dfa52983db76df9149f75bc63608efd4d57 (diff) | |
download | php-git-46832dbcab77079dedf167a00f9f845aa4e1f95f.tar.gz |
ChangeLog update
-rw-r--r-- | ChangeLog | 75 | ||||
-rw-r--r-- | Zend/ChangeLog | 19 |
2 files changed, 94 insertions, 0 deletions
@@ -1,3 +1,78 @@ +2003-03-29 Moriyoshi Koizumi <moriyoshi@at.wakwak.com> + + * ext/standard/var.c: + Improved var_dump() and debug_zval_dump() so they also show the + namespace of the given object. + +2003-03-29 Marcus Boerger <marcus.boerger@post.rwth-aachen.de> + + * main/php_ini.c: + fix phpinfo() & php -i + + * sapi/cli/php_cli.c: + use sizeof() as suggested by Andrei + +2003-03-29 Derick Rethans <d.rethans@jdimedia.nl> + + * sapi/cli/php_cli.c: + - html errors should default to off (0) in CLI + +2003-03-29 Moriyoshi Koizumi <moriyoshi@at.wakwak.com> + + * sapi/cgi/cgi_main.c: + Fixed too optimized part + + * sapi/cgi/cgi_main.c: + CS & WS fixes + + * (PHP_4_3) + configure.in: + MFH(r-1.436): improved bison check; now configure accepts 1.28, 1.35 and + 1.75 + only. + + * configure.in: + Improved bison check; now configure accepts 1.28, 1.35, and 1.75 only. + + * (PHP_4_3) + ext/mbstring/tests/mb_parse_str.phpt + ext/mbstring/tests/mb_parse_str02.phpt: + MFH: fixed test cases so it wouldn't be failed in case register_globals=on + + * ext/mbstring/tests/mb_parse_str.phpt + ext/mbstring/tests/mb_parse_str02.phpt: + Fixed test cases so they wouldn't be failed in case register_globals=on + +2003-03-29 Sterling Hughes <sterling@bumblebury.com> + + * Makefile.global + acinclude.m4 + configure.in + sapi/apache/apMakefile.tmpl + sapi/apache/config.m4 + sapi/apache/libphp4.module.in + sapi/apache/libphp5.module.in + sapi/apache/mod_php4.c + sapi/apache/mod_php4.exp + sapi/apache/mod_php4.h + sapi/apache/mod_php5.c + sapi/apache/mod_php5.exp + sapi/apache/mod_php5.h + sapi/apache/php.sym + sapi/apache/php_apache_http.h + sapi/apache2filter/config.m4 + sapi/apache2filter/php.sym + sapi/apache2filter/php_apache.h + sapi/apache2filter/sapi_apache2.c + sapi/apache2handler/config.m4 + sapi/apache2handler/php.sym + sapi/apache2handler/php_apache.h + sapi/apache2handler/sapi_apache2.c: + update php module name to php5, not php4. + apache, apache2* and cli/cgi work. + sapi module maintainers should fix up their sapis, as I don't run + any servers with php outside of apache. + 2003-03-28 Derick Rethans <d.rethans@jdimedia.nl> * run-tests.php: diff --git a/Zend/ChangeLog b/Zend/ChangeLog index 90ac7be871..3100e29264 100644 --- a/Zend/ChangeLog +++ b/Zend/ChangeLog @@ -1,3 +1,22 @@ +2003-03-29 Zeev Suraski <zeev@zend.com> + + * zend_compile.c: + Add missing initialization + + * zend_compile.c: + Fix crash + + * zend_API.c + zend_compile.c + zend_compile.h: + Initial support for enforcing prototype of abstract/interface method + implementations + +2003-03-29 Sterling Hughes <sterling@bumblebury.com> + + * zend.c: + remove unused variable + 2003-03-27 Stanislav Malyshev <stas@zend.com> * zend_execute.c: |