]> granicus.if.org Git - php/commitdiff
Update NEWS
authorXinchen Hui <laruence@php.net>
Tue, 10 Mar 2015 07:38:34 +0000 (15:38 +0800)
committerXinchen Hui <laruence@php.net>
Tue, 10 Mar 2015 07:38:34 +0000 (15:38 +0800)
NEWS
ext/mysqli/tests/connect.inc

diff --git a/NEWS b/NEWS
index fe9b6625d713a0a6a160b75472154462212657ee..51cc5ca00913e8ca9bfcc9e0936e39e3ac283be8 100644 (file)
--- 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:
index 4acc20cb9195c19136d4420cb05ad3a3a80838f5..67ce60a48bd6b0697f8a5c888013bcf70d9734d8 100644 (file)
@@ -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";