diff options
author | Xinchen Hui <laruence@php.net> | 2015-03-10 15:38:34 +0800 |
---|---|---|
committer | Xinchen Hui <laruence@php.net> | 2015-03-10 15:38:34 +0800 |
commit | 0584b2df3f53f2a3e17d0a286c8cf33be3d12ef0 (patch) | |
tree | 1f098f5fe29b75bc738ba8feb764e39303794cdf | |
parent | abb09693ac4d59b80d98a47a82b8551c3f239c8a (diff) | |
download | php-git-0584b2df3f53f2a3e17d0a286c8cf33be3d12ef0.tar.gz |
Update NEWS
-rw-r--r-- | NEWS | 14 | ||||
-rw-r--r-- | ext/mysqli/tests/connect.inc | 4 |
2 files changed, 10 insertions, 8 deletions
@@ -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"; |