diff options
author | <changelog@php.net> | 2005-02-22 01:36:03 +0000 |
---|---|---|
committer | <changelog@php.net> | 2005-02-22 01:36:03 +0000 |
commit | 4fd1d7e85ac2684e981fba98c245010fafd0f99c (patch) | |
tree | da1677b4c06d497b46f738f6e15614506208d954 | |
parent | c7b931d80d7960040ab51f07f04d0d1e1f05525b (diff) | |
download | php-git-4fd1d7e85ac2684e981fba98c245010fafd0f99c.tar.gz |
ChangeLog update
-rw-r--r-- | ChangeLog | 135 | ||||
-rw-r--r-- | Zend/ChangeLog | 5 |
2 files changed, 140 insertions, 0 deletions
@@ -1,3 +1,138 @@ +2005-02-21 Jani Taskinen <jani.taskinen@kolumbus.fi> + + * (PHP_5_0) + ext/mysqli/tests/skipif.inc: + Added missing skipif.inc (bug #31940) + + * main/SAPI.c: + Nuke unused variables when PCRE is not compiled in + + * main/SAPI.c: + Remove the useless TSRM_FETCH calls + +2005-02-21 Moriyoshi Koizumi <moriyoshi@at.wakwak.com> + + * NEWS + NEWS: + - BFN + + * ext/mbstring/mbstring.c + ext/mbstring/mbstring.c: + - WS fix. + + * ext/mbstring/mb_gpc.c + ext/mbstring/mbstring.c + main/SAPI.c + main/SAPI.h + main/main.c + main/php_content_types.c + main/php_content_types.h: + - Fix bug #28568 (known_post_content_types is not thread safe). + + * ZendEngine2/Makefile.am: + - Add missing entry. + +2005-02-21 Stanislav Malyshev <stas@zend.com> + + * (PHP_4_3) + Zend/zend_execute.c: + fix overloaded objects via TMP_VAR + + * (PHP_4_3) + main/SAPI.c: + packport fix from PHP5: read post data if they wreen't read + +2005-02-21 Moriyoshi Koizumi <moriyoshi@at.wakwak.com> + + * (PHP_5_0) + NEWS + ext/mbstring/php_mbregex.c: + - MFH: fix bug #30868 (evaluated pointer comparison in mbregex causes + compile + failure). + + * ext/mbstring/php_mbregex.c: + - Fix bug #30868 (evaluated pointer comparison in mbregex causes compile + failure). + + * (PHP_4_3) + NEWS: + - MFH: fix bug #30573 (compiler warning due to invalid type cast). + +2005-02-21 Anantha Kesari H Y <hyanantha@novell.com> + + * TSRM/tsrm_virtual_cwd.h: + NetWare LibC has lstat implementation + + * TSRM/tsrm_config_common.h: + NetWare can make use of autogenerated config header file + + * TSRM/TSRM.c: + NetWare has pthreads implementation + + * TSRM/TSRM.h: + NetWare can use the tsrm_config.h + + * TSRM/tsrm_virtual_cwd.c: + NetWare LibC has a lstat implementation + + * ext/standard/proc_open.c: + In NetWare LibC WTERMSIG is avaliable as WIFTERMSIG + +2005-02-21 Moriyoshi Koizumi <moriyoshi@at.wakwak.com> + + * (PHP_5_0) + NEWS: + - MFH: fix bug #29989 (type re_registers redefined in oniguruma.h) + +2005-02-21 Anantha Kesari H Y <hyanantha@novell.com> + + * ext/standard/pageinfo.c: + NetWare LibC has pwd.h. Removed unwanted extern basic_globals_id + declaration for Netware. + + * ext/standard/pack.c: + NetWare has pwd.h and removed unwanted check on NEW_LIBC while including + param.h + + * ext/standard/link.c: + NetWare LibC has pwd.h + + * ext/standard/filestat.c: + In NetWare statfs f_bavail member is known as f_bfree + +2005-02-21 Moriyoshi Koizumi <moriyoshi@at.wakwak.com> + + * ext/mbstring/mbstring.c: + - Fix compiler warnings. + + * (PHP_4_3) + ext/mbstring/tests/bug28220.phpt + ext/mbstring/tests/bug30549.phpt + ext/mbstring/tests/bug31911.phpt: + - MFH: add testcases for bug #28220, #30549 and #31911. + + * (PHP_5_0) + ext/mbstring/tests/bug28220.phpt + ext/mbstring/tests/bug30549.phpt: + - MFH: add testcases for bug #28220 and #30549. + + * ext/mbstring/tests/bug28220.phpt + ext/mbstring/tests/bug30549.phpt: + 1.1.4; + - Add testcases for bug #28220 and #30549. + + * (PHP_4_3) + NEWS + ext/mbstring/config.m4: + - Upgrade libmbfl (fixers bug #28220, #30549 and #31911). + +2005-02-21 Greg Beaver <greg@chiaraquartet.net> + + * (PHP_5_0) + pear/go-pear-list.php: + upgrade to PEAR 1.3.5 + 2005-02-20 Moriyoshi Koizumi <moriyoshi@at.wakwak.com> * (PHP_5_0) diff --git a/Zend/ChangeLog b/Zend/ChangeLog index db6ad6fc00..5ba3746d8f 100644 --- a/Zend/ChangeLog +++ b/Zend/ChangeLog @@ -1,3 +1,8 @@ +2005-02-21 Moriyoshi Koizumi <moriyoshi@at.wakwak.com> + + * Makefile.am: + - Add missing entry. + 2005-02-20 Dmitry Stogov <dmitry@zend.com> * zend_compile.c: |