From: Date: Wed, 18 Feb 2009 01:32:40 +0000 (+0000) Subject: ChangeLog update X-Git-Tag: php-5.4.0alpha1~191^2~4247 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=26794cec9bf25258439913e7655dd02d4b4e8ce3;p=php ChangeLog update --- diff --git a/ChangeLog b/ChangeLog index c65a22b340..0186c5138a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,128 @@ +2009-02-17 Zoe Slattery + + * ZendEngine2/tests/bug46701.phpt + ZendEngine2/tests/bug46701.phpt + ZendEngine2/tests/bug46701.phpt: + fix test + +2009-02-17 Ilia Alshanetsky + + * (PHP_5_2) + NEWS: + FN + + * (PHP_5_2) + ZendEngine2/zend_object_handlers.c: + Fixed bug #45327 (memory leak if offsetGet throws exception) + +2009-02-17 Moriyoshi Koizumi + + * (PHP_5_3) + ext/mbstring/mbstring.c + ext/mbstring/tests/mb_get_info.phpt: + - MFH: Add an entry for http_output_conv_mimetypes to the output of + mb_get_info(). (patch by T. Komura, thanks!) + + * ext/mbstring/mbstring.c + ext/mbstring/tests/mb_get_info.phpt + ext/mbstring/tests/mb_get_info.phpt: + - Add an entry for http_output_conv_mimetypes to the output of + mb_get_info(). + +2009-02-17 Matt Wilmas + + * ZendEngine2/zend_operators.c: + Added overflow comment from div_function + +2009-02-17 Zoe Slattery + + * ext/standard/tests/mail/mail_basic2.phpt + ext/standard/tests/mail/mail_basic2.phpt + ext/standard/tests/mail/mail_basic2.phpt: + Increased the sleep() from 1 to 5 to prevent intermittent failures + +2009-02-17 Johannes Schlüter + + * (PHP_5_3) + NEWS: + Wrap wrong lines + + * (PHP_5_3) + NEWS + ext/pdo/pdo_dbh.c + ext/pdo_sqlite/tests/bug46542.phpt: + MFH: Fix #46542 Extending PDO class with a __call() function doesn't work + as expected + + * ext/pdo/pdo_dbh.c + ext/pdo_sqlite/tests/bug46542.phpt + ext/pdo_sqlite/tests/bug46542.phpt: + - Fix #46542 Extending PDO class with a __call() function doesn't work as + expected + +2009-02-17 Matt Wilmas + + * (PHP_5_2) + NEWS: + Entry for bug #47422 + + * (PHP_5_2) + ZendEngine2/zend_operators.c + ZendEngine2/zend_operators.c: + MFH: Fixed bug #47422 (modulus operator returns incorrect results on 64 bit + linux) + + * ZendEngine2/zend_operators.c: + Fixed bug #47422 (modulus operator returns incorrect results on 64 bit + linux) + Removed abs(), just -1 needs to be checked (only LONG_MIN % -1 is a + problem) + +2009-02-17 Felipe Pena + + * (PHP_5_3) + NEWS + ext/odbc/php_odbc.c: + - MFH: Fix proto + [DOC] proto: $result_array is a reference + + * ext/odbc/php_odbc.c: + - Fix proto + + * (PHP_5_3) + ext/odbc/php_odbc.c: + - MFH: Fixed bug #47390 (odbc_fetch_into - BC in php 5.3.0) + + * ext/odbc/php_odbc.c: + - Fixed bug #47390 (odbc_fetch_into - BC in php 5.3.0) + +2009-02-17 Johannes Schlüter + + * (PHP_5_3) + NEWS: + Fixed in 5.2 + + * (PHP_5_2) + NEWS + ext/mysqli/mysqli.c + ext/mysqli/mysqli_prop.c + ext/mysqli/tests/bug45940.phpt + ext/mysqli/tests/bug45940.phpt: + MFH: Fix #45940 MySQLI OO does not populate connect_error property on + failed connect + +2009-02-17 Zoe Slattery + + * ext/standard/tests/file/file_put_contents_variation6.phpt + ext/standard/tests/file/file_put_contents_variation6.phpt: + bug 46680 + +2009-02-17 Antony Dovgal + + * ext/mbstring/tests/mb_stristr_basic.phpt + ext/mbstring/tests/mb_stristr_basic.phpt: + remove XFAIL + 2009-02-16 Zoe Slattery * ext/standard/tests/file/file_get_contents_variation5.phpt diff --git a/Zend/ChangeLog b/Zend/ChangeLog index 0fec62fde2..64cb04cdc9 100644 --- a/Zend/ChangeLog +++ b/Zend/ChangeLog @@ -1,3 +1,33 @@ +2009-02-17 Zoe Slattery + + * tests/bug46701.phpt + tests/bug46701.phpt + tests/bug46701.phpt: + fix test + +2009-02-17 Ilia Alshanetsky + + * (PHP_5_2) + zend_object_handlers.c: + Fixed bug #45327 (memory leak if offsetGet throws exception) + +2009-02-17 Matt Wilmas + + * zend_operators.c: + Added overflow comment from div_function + + * (PHP_5_2) + zend_operators.c + zend_operators.c: + MFH: Fixed bug #47422 (modulus operator returns incorrect results on 64 bit + linux) + + * zend_operators.c: + Fixed bug #47422 (modulus operator returns incorrect results on 64 bit + linux) + Removed abs(), just -1 needs to be checked (only LONG_MIN % -1 is a + problem) + 2009-02-15 Ilia Alshanetsky * (PHP_5_2)