mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-04 18:01:42 +01:00
Logging in: when the Remember Me checkbox is checked, make sure the browser continues to send the expired cookies so the "login grace period" for POST and AJAX requests works. Fixes #24735.
Built from https://develop.svn.wordpress.org/trunk@25107 git-svn-id: http://core.svn.wordpress.org/trunk@25089 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
22c59d9c45
commit
3c3ec6dd8c
@ -649,7 +649,10 @@ if ( !function_exists('wp_set_auth_cookie') ) :
|
|||||||
*/
|
*/
|
||||||
function wp_set_auth_cookie($user_id, $remember = false, $secure = '') {
|
function wp_set_auth_cookie($user_id, $remember = false, $secure = '') {
|
||||||
if ( $remember ) {
|
if ( $remember ) {
|
||||||
$expiration = $expire = time() + apply_filters('auth_cookie_expiration', 14 * DAY_IN_SECONDS, $user_id, $remember);
|
$expiration = time() + apply_filters('auth_cookie_expiration', 14 * DAY_IN_SECONDS, $user_id, $remember);
|
||||||
|
// Ensure the browser will continue to send the cookie after the expiration time is reached.
|
||||||
|
// Needed for the login grace period in wp_validate_auth_cookie().
|
||||||
|
$expire = $expiration + ( 12 * HOUR_IN_SECONDS );
|
||||||
} else {
|
} else {
|
||||||
$expiration = time() + apply_filters('auth_cookie_expiration', 2 * DAY_IN_SECONDS, $user_id, $remember);
|
$expiration = time() + apply_filters('auth_cookie_expiration', 2 * DAY_IN_SECONDS, $user_id, $remember);
|
||||||
$expire = 0;
|
$expire = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user