Changeset 37758 for branches/4.4
- Timestamp:
- 06/21/2016 02:10:22 PM (8 years ago)
- Location:
- branches/4.4
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.4
-
branches/4.4/src/wp-includes/pluggable.php
r37081 r37758 1042 1042 } 1043 1043 1044 if ( is_user_admin() ) { 1045 $scheme = 'logged_in'; 1046 } else { 1047 /** 1048 * Filter the authentication redirect scheme. 1049 * 1050 * @since 2.9.0 1051 * 1052 * @param string $scheme Authentication redirect scheme. Default empty. 1053 */ 1054 $scheme = apply_filters( 'auth_redirect_scheme', '' ); 1055 } 1044 /** 1045 * Filters the authentication redirect scheme. 1046 * 1047 * @since 2.9.0 1048 * 1049 * @param string $scheme Authentication redirect scheme. Default empty. 1050 */ 1051 $scheme = apply_filters( 'auth_redirect_scheme', '' ); 1056 1052 1057 1053 if ( $user_id = wp_validate_auth_cookie( '', $scheme) ) {
Note: See TracChangeset
for help on using the changeset viewer.