Skip to content

Commit

Permalink
Fix #77911: Wrong warning for session.sid_bits_per_character
Browse files Browse the repository at this point in the history
  • Loading branch information
cmb69 committed Apr 17, 2019
1 parent 7b1a4e2 commit d20053a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion ext/session/session.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
/* }}} */
Expand Down

0 comments on commit d20053a

Please sign in to comment.