From: Xinchen Hui Date: Tue, 10 Mar 2015 07:38:34 +0000 (+0800) Subject: Update NEWS X-Git-Tag: php-5.6.8RC1~91 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0584b2df3f53f2a3e17d0a286c8cf33be3d12ef0;p=php Update NEWS --- diff --git a/NEWS b/NEWS index fe9b6625d7..51cc5ca009 100644 --- a/NEWS +++ b/NEWS @@ -2,19 +2,21 @@ ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ?? Apr 2015, PHP 5.6.8 -- OpenSSL - . Fixed bugs #68853, #65137 (Buffered crypto stream data breaks IO polling - in stream_select() contexts) (Chris Wright) - . Fixed bug #69197 (openssl_pkcs7_sign handles default value incorrectly) - (Daniel Lowrey) - - Core: + . Fixed bug #66609 (php crashes with __get() and ++ operator in some cases). + (Dmitry, Laruence) . Fixed bug #68917 (parse_url fails on some partial urls). (Wei Dai) - Filter: . Fixed bug #69202: (FILTER_FLAG_STRIP_BACKTICK ignored unless other flags are used). (Jeff Welch) +- OpenSSL + . Fixed bugs #68853, #65137 (Buffered crypto stream data breaks IO polling + in stream_select() contexts) (Chris Wright) + . Fixed bug #69197 (openssl_pkcs7_sign handles default value incorrectly) + (Daniel Lowrey) + 19 Mar 2015, PHP 5.6.7 - Core: diff --git a/ext/mysqli/tests/connect.inc b/ext/mysqli/tests/connect.inc index 4acc20cb91..67ce60a48b 100644 --- a/ext/mysqli/tests/connect.inc +++ b/ext/mysqli/tests/connect.inc @@ -8,8 +8,8 @@ $driver = new mysqli_driver; - $host = getenv("MYSQL_TEST_HOST") ? getenv("MYSQL_TEST_HOST") : "localhost"; - $port = getenv("MYSQL_TEST_PORT") ? getenv("MYSQL_TEST_PORT") : 3306; + $host = getenv("MYSQL_TEST_HOST") ? getenv("MYSQL_TEST_HOST") : "127.0.0.1"; + $port = getenv("MYSQL_TEST_PORT") ? getenv("MYSQL_TEST_PORT") : 3308; $user = getenv("MYSQL_TEST_USER") ? getenv("MYSQL_TEST_USER") : "root"; $passwd = getenv("MYSQL_TEST_PASSWD") ? getenv("MYSQL_TEST_PASSWD") : ""; $db = getenv("MYSQL_TEST_DB") ? getenv("MYSQL_TEST_DB") : "test";