Fix #77911: Wrong warning for session.sid_bits_per_character

This commit is contained in:
Christoph M. Becker 2019-04-17 17:23:23 +02:00
parent 7b1a4e2400
commit d20053a556
2 changed files with 3 additions and 1 deletions

2
NEWS
View File

@ -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

View 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;
}
/* }}} */