From 4e90a18c7cd35cdb86d50c76669e8a85ddc01c00 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sat, 17 Jan 2015 17:20:23 +0000 Subject: [PATCH] Pass $force_reauth value to the 'login_url' filter. props jfarthing84, MikeHansenMe. fixes #31015. Built from https://develop.svn.wordpress.org/trunk@31228 git-svn-id: http://core.svn.wordpress.org/trunk@31209 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/general-template.php | 7 ++++--- wp-includes/version.php | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/wp-includes/general-template.php b/wp-includes/general-template.php index 51cc66bb23..6872a01dd0 100644 --- a/wp-includes/general-template.php +++ b/wp-includes/general-template.php @@ -347,10 +347,11 @@ function wp_login_url($redirect = '', $force_reauth = false) { * * @since 2.8.0 * - * @param string $login_url The login URL. - * @param string $redirect The path to redirect to on login, if supplied. + * @param string $login_url The login URL. + * @param string $redirect The path to redirect to on login, if supplied. + * @param bool $force_reauth Whether to force reauthorization, even if a cookie is present. */ - return apply_filters( 'login_url', $login_url, $redirect ); + return apply_filters( 'login_url', $login_url, $redirect, $force_reauth ); } /** diff --git a/wp-includes/version.php b/wp-includes/version.php index 35d6819eda..39ae1abcc2 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.2-alpha-31227'; +$wp_version = '4.2-alpha-31228'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.