]> granicus.if.org Git - php/commitdiff
Update NEWS
authorYasuo Ohgaki <yohgaki@php.net>
Tue, 12 Jan 2016 21:40:11 +0000 (06:40 +0900)
committerYasuo Ohgaki <yohgaki@php.net>
Tue, 12 Jan 2016 21:40:11 +0000 (06:40 +0900)
NEWS

diff --git a/NEWS b/NEWS
index 9e1814aeae8d8bd0ef24e25a9213318dd2bcbb96..5929a4c6a6a9f130c9c0545707ba3312f5659d08 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -23,6 +23,11 @@ PHP                                                                        NEWS
 
 - Session:
   . Fixed bug #71122 (Session GC may not remove obsolete session data). (Yasuo)
+  . Fixed bug #71038 (session_start() returns TRUE on failure).
+    It's fixed partially on PHP 5.6. It still returns TRUE on session read
+    failure for compatibility. Session save handlers should return 'string'
+    always for successful read. i.e. Non-existing session read must return
+    empty string. PHP 7.0 is made not to tolerate buggy return value. (Yasuo)
 
 - SPL:
   . Fixed bug #71204 (segfault if clean spl_autoload_funcs while autoloading).