From 08e2ab65c14290783036ce71694489c22c73c731 Mon Sep 17 00:00:00 2001 From: Jeremy Felt Date: Tue, 21 Jun 2016 14:10:22 +0000 Subject: [PATCH] Admin: Allow for the consistent filtering of `auth_redirect_scheme` Merge of [37651] to the 4.4 branch. See #37047. git-svn-id: https://develop.svn.wordpress.org/branches/4.4@37758 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/pluggable.php | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/src/wp-includes/pluggable.php b/src/wp-includes/pluggable.php index d6f1ebef0c..e3e55d9d1c 100644 --- a/src/wp-includes/pluggable.php +++ b/src/wp-includes/pluggable.php @@ -1041,18 +1041,14 @@ function auth_redirect() { } } - if ( is_user_admin() ) { - $scheme = 'logged_in'; - } else { - /** - * Filter the authentication redirect scheme. - * - * @since 2.9.0 - * - * @param string $scheme Authentication redirect scheme. Default empty. - */ - $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) ) { /**