Changeset 37762
- Timestamp:
- 06/21/2016 02:11:27 PM (7 years ago)
- Location:
- branches/4.1
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.1
-
branches/4.1/src/wp-includes/pluggable.php
r36450 r37762 1008 1008 } 1009 1009 1010 if ( is_user_admin() ) { 1011 $scheme = 'logged_in'; 1012 } else { 1013 /** 1014 * Filter the authentication redirect scheme. 1015 * 1016 * @since 2.9.0 1017 * 1018 * @param string $scheme Authentication redirect scheme. Default empty. 1019 */ 1020 $scheme = apply_filters( 'auth_redirect_scheme', '' ); 1021 } 1010 /** 1011 * Filters the authentication redirect scheme. 1012 * 1013 * @since 2.9.0 1014 * 1015 * @param string $scheme Authentication redirect scheme. Default empty. 1016 */ 1017 $scheme = apply_filters( 'auth_redirect_scheme', '' ); 1022 1018 1023 1019 if ( $user_id = wp_validate_auth_cookie( '', $scheme) ) {
Note: See TracChangeset
for help on using the changeset viewer.