From 5e739be4f60d5e1203edb660f2914d9a311c07cf Mon Sep 17 00:00:00 2001 From: Jeremy Felt Date: Tue, 21 Jun 2016 14:14:10 +0000 Subject: [PATCH] Admin: Allow for the consistent filtering of `auth_redirect_scheme` Merge of [37651] to the 3.7 branch. See #37047. Built from https://develop.svn.wordpress.org/branches/3.7@37766 git-svn-id: http://core.svn.wordpress.org/branches/3.7@37731 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/pluggable.php | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/wp-includes/pluggable.php b/wp-includes/pluggable.php index c0d7b7def7..52f54e5607 100644 --- a/wp-includes/pluggable.php +++ b/wp-includes/pluggable.php @@ -758,10 +758,14 @@ function auth_redirect() { } } - if ( is_user_admin() ) - $scheme = 'logged_in'; - else - $scheme = apply_filters( 'auth_redirect_scheme', '' ); + /** + * Filters the authentication redirect scheme. + * + * @since 2.9.0 + * + * @param string $scheme Authentication redirect scheme. Default empty. + */ + $scheme = apply_filters( 'auth_redirect_scheme', '' ); if ( $user_id = wp_validate_auth_cookie( '', $scheme) ) { do_action('auth_redirect', $user_id);