Skip to content

Commit f0ccd9f

Browse files
committed
Merge branch 'PHP-7.2' into PHP-7.3
* PHP-7.2: Fix #77911: Wrong warning for session.sid_bits_per_character
2 parents 6088713 + d20053a commit f0ccd9f

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

NEWS

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

5+
- Session:
6+
. Fixed bug #77911 (Wrong warning for session.sid_bits_per_character). (cmb)
7+
58
02 May 2019, PHP 7.3.5
69

710
- Core:

ext/session/session.c

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

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

0 commit comments

Comments
 (0)