diff --git a/ChangeLog b/ChangeLog index 86d9a95e42f..6803f50a04b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,86 @@ +2008-05-20 Etienne Kneuss + + * (PHP_5_3) + ext/spl/spl_directory.c + ext/spl/spl_directory.h + ext/spl/tests/fileobject_004.phpt: + MFH: Fix path lookup when include_path is used + + * ext/spl/spl_directory.c + ext/spl/spl_directory.h + ext/spl/tests/fileobject_004.phpt + ext/spl/tests/fileobject_004.phpt: + Fix path lookup when include_path is used + +2008-05-20 Antony Dovgal + + * ZendEngine2/zend_constants.c: + use correct check for unicode + strings may be still strings, even in Unicode mode + + * ZendEngine2/zend.c: + make sure that converters are not equal to utf8 & ascii before destroying + them, or we may end up with double free + + * ZendEngine2/tests/constants/dir-constant-eval.phpt + ZendEngine2/tests/constants/dir-constant-includes.phpt + ZendEngine2/tests/constants/dir-constant-nested_includes.phpt + ZendEngine2/tests/constants/dir-constant-normal.phpt: + fix tests + + * (PHP_5_3) + ZendEngine2/tests/constants/dir-constant-eval.phpt + ZendEngine2/tests/constants/dir-constant-includes.phpt + ZendEngine2/tests/constants/dir-constant-nested_includes.phpt + ZendEngine2/tests/constants/dir-constant-normal.phpt: + fix tests (say hello to disk C:\) + +2008-05-20 David Soria Parra + + * ext/soap/soap.c + ext/soap/soap.c: + Coding style + + * (PHP_5_3) + ext/soap/soap.c: + MFH: Allow non-long values for proxy_port, connection_timeout and convert + them + + * ext/soap/soap.c: + Allow non-long values for proxy_port, connection_timeout and convert them + +2008-05-20 Antony Dovgal + + * ext/date/php_date.c: + fix function signature and silence compile warning + + * ext/spl/spl_array.c + ext/spl/spl_heap.c: + nuke unused variables + + * main/streams/unicode_filter.c: + fix invalid free in Unicode filter + +2008-05-20 Dmitry Stogov + + * TSRM/tsrm_virtual_cwd.c + TSRM/tsrm_virtual_cwd.c + TSRM/tsrm_virtual_cwd.c: + proper fix + +2008-05-20 Greg Beaver + + * ext/phar/phar_object.c: + s/zend_hash_exists/zend_hash_find/ + + * ext/phar/phar_object.c: + MFB relax rename requirements + + * (PHP_5_3) + ext/phar/phar_object.c: + relax conversion, so that if a phar has no files, we can convert it to + another format without changing the extension + 2008-05-19 Andrei Zmievski * ZendEngine2/zend.c: diff --git a/Zend/ChangeLog b/Zend/ChangeLog index 16b30348101..8156b2b4d1a 100644 --- a/Zend/ChangeLog +++ b/Zend/ChangeLog @@ -1,3 +1,26 @@ +2008-05-20 Antony Dovgal + + * zend_constants.c: + use correct check for unicode + strings may be still strings, even in Unicode mode + + * zend.c: + make sure that converters are not equal to utf8 & ascii before destroying + them, or we may end up with double free + + * tests/constants/dir-constant-eval.phpt + tests/constants/dir-constant-includes.phpt + tests/constants/dir-constant-nested_includes.phpt + tests/constants/dir-constant-normal.phpt: + fix tests + + * (PHP_5_3) + tests/constants/dir-constant-eval.phpt + tests/constants/dir-constant-includes.phpt + tests/constants/dir-constant-nested_includes.phpt + tests/constants/dir-constant-normal.phpt: + fix tests (say hello to disk C:\) + 2008-05-19 Andrei Zmievski * zend.c: