From: Date: Tue, 5 Apr 2005 00:35:37 +0000 (+0000) Subject: ChangeLog update X-Git-Tag: php-5.0.1b1~611 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0b0fc93a55791d15697720396f5d414b7c55e3b9;p=php ChangeLog update --- diff --git a/ChangeLog b/ChangeLog index a99549b53a..49f77c37a3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,113 @@ +2005-04-04 Sara Golemon + + * (PHP_4_3) + main/streams.c: + MFH rev 1.72 (of main/streams/streams.c) + + * main/streams/streams.c: + BugFix #32563 + + This could have been done in stream_wrapper_register() + without introducing the slight performance hit on + wrapper registration since anyone registering a wrapper + in an extension should know better. + + The important thing is that since locate_wrapper makes + the assumption that all schemes will be /^[a-z0-9+.-]+$/i + Anything which registers them should make the same assumption as well. + +2005-04-04 Jani Taskinen + + * (PHP_4_3) + ext/standard/credits_ext.h: + update + + * (PHP_5_0) + NEWS + ext/standard/credits_ext.h + ext/standard/credits_sapi.h: + - Update + + * ext/standard/credits_ext.h: + Update credits + + * ext/standard/tests/file/bug30362.txt + ext/standard/tests/file/bug30362.txt: + + remove empty lines + + * ext/standard/tests/file/bug30362.phpt + ext/standard/tests/file/bug30362.phpt + ext/standard/tests/file/bug30362.txt: + + Added testcase for bug #30362 + +2005-04-04 Stanislav Malyshev + + * ZendEngine2/zend_builtin_functions.c: + MF50: fix backtraces - non-Zend classes have names too + + * (PHP_5_0) + ZendEngine2/zend_builtin_functions.c: + fix backtraces - non-Zend classes have names too + +2005-04-04 Antony Dovgal + + * (PHP_4_3) + NEWS + ext/gmp/gmp.c: + fix #32567 (ext/gmp fails to compile with thread safety enabled) + +2005-04-04 Rui Hirokawa + + * main/SAPI.c + main/SAPI.h + main/main.c + main/php_variables.c + sapi/apache/mod_php5.c + sapi/apache_hooks/mod_php5.c: + added a server variable PHP_AUTH_DIGEST to support HTTP Digest + Authentication. + +2005-04-04 Uwe Schindler + + * NEWS + NEWS + NEWS + main/rfc1867.c + main/rfc1867.c + main/rfc1867.c: + Bug #32491 (File upload error - unable to create a temporary file) - + Changing file upload from stdio to posix + +2005-04-04 Antony Dovgal + + * (PHP_5_0) + NEWS + ext/odbc/config.m4: + MFH: configure looks for incorrect db2 library + + * ext/odbc/config.m4: + fix #32560 (configure looks for incorrect library - libdb2.so instead of + libdb2.a, + which is used actually) + +2005-04-04 Jani Taskinen + + * php.ini-recommended: + - If this is supposed to be the configuration we recommend, + we've been recommending to not use short-open-tag for a long time. + E_STRICT too for 5.1 since it promotes the right ways (tm) to do things. + +2005-04-04 Jon Parise + + * NEWS + build/build2.mk + build/buildcheck.sh: + Adding the ability to override the autotools executables used by the + buildconf script via the PHP_AUTOCONF and PHP_AUTOHEADER environmental + variables. + 2005-04-03 Jani Taskinen * NEWS: diff --git a/Zend/ChangeLog b/Zend/ChangeLog index c7a27b015f..2928ea1471 100644 --- a/Zend/ChangeLog +++ b/Zend/ChangeLog @@ -1,3 +1,12 @@ +2005-04-04 Stanislav Malyshev + + * zend_builtin_functions.c: + MF50: fix backtraces - non-Zend classes have names too + + * (PHP_5_0) + zend_builtin_functions.c: + fix backtraces - non-Zend classes have names too + 2005-04-03 Jani Taskinen * (PHP_5_0)