Skip to content

Commit d20053a

Browse files
committed
Fix #77911: Wrong warning for session.sid_bits_per_character
1 parent 7b1a4e2 commit d20053a

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

NEWS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ PHP NEWS
22
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
33
?? ??? 2019, PHP 7.2.19
44

5+
- Session:
6+
. Fixed bug #77911 (Wrong warning for session.sid_bits_per_character). (cmb)
57

68
02 May 2019, PHP 7.2.18
79

ext/session/session.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -751,7 +751,7 @@ static PHP_INI_MH(OnUpdateSidBits) /* {{{ */
751751
return SUCCESS;
752752
}
753753

754-
php_error_docref(NULL, E_WARNING, "session.configuration 'session.sid_bits' must be between 4 and 6.");
754+
php_error_docref(NULL, E_WARNING, "session.configuration 'session.sid_bits_per_character' must be between 4 and 6.");
755755
return FAILURE;
756756
}
757757
/* }}} */

0 commit comments

Comments
 (0)