diff options
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | ext/session/session.c | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -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 diff --git a/ext/session/session.c b/ext/session/session.c index dd54e6fed1..65fb30697c 100644 --- a/ext/session/session.c +++ b/ext/session/session.c @@ -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; } /* }}} */ |