]> granicus.if.org Git - php/commitdiff
Fix #77911: Wrong warning for session.sid_bits_per_character
authorChristoph M. Becker <cmbecker69@gmx.de>
Wed, 17 Apr 2019 15:23:23 +0000 (17:23 +0200)
committerChristoph M. Becker <cmbecker69@gmx.de>
Wed, 17 Apr 2019 15:23:23 +0000 (17:23 +0200)
NEWS
ext/session/session.c

diff --git a/NEWS b/NEWS
index 89276908bb5dfaeacdb6ca65c08fbb3d02fb6407..875d6afe3f633c0227ce284a3ea94b7c087e3f7e 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -2,6 +2,8 @@ PHP                                                                        NEWS
 |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
 ?? ??? 2019, PHP 7.2.19
 
+- Session:
+  . Fixed bug #77911 (Wrong warning for session.sid_bits_per_character). (cmb)
 
 02 May 2019, PHP 7.2.18
 
index dd54e6fed1d6ace92b5198d224a71ac094e97b13..65fb30697cb2d9df7c5ca70d4c37544b212d85d9 100644 (file)
@@ -751,7 +751,7 @@ static PHP_INI_MH(OnUpdateSidBits) /* {{{ */
                return SUCCESS;
        }
 
-       php_error_docref(NULL, E_WARNING, "session.configuration 'session.sid_bits' must be between 4 and 6.");
+       php_error_docref(NULL, E_WARNING, "session.configuration 'session.sid_bits_per_character' must be between 4 and 6.");
        return FAILURE;
 }
 /* }}} */