Changeset 37760
- Timestamp:
- 06/21/2016 02:10:45 PM (8 years ago)
- Location:
- branches/4.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.3
-
branches/4.3/src/wp-includes/pluggable.php
r36448 r37760 1022 1022 } 1023 1023 1024 if ( is_user_admin() ) { 1025 $scheme = 'logged_in'; 1026 } else { 1027 /** 1028 * Filter the authentication redirect scheme. 1029 * 1030 * @since 2.9.0 1031 * 1032 * @param string $scheme Authentication redirect scheme. Default empty. 1033 */ 1034 $scheme = apply_filters( 'auth_redirect_scheme', '' ); 1035 } 1024 /** 1025 * Filters the authentication redirect scheme. 1026 * 1027 * @since 2.9.0 1028 * 1029 * @param string $scheme Authentication redirect scheme. Default empty. 1030 */ 1031 $scheme = apply_filters( 'auth_redirect_scheme', '' ); 1036 1032 1037 1033 if ( $user_id = wp_validate_auth_cookie( '', $scheme) ) {
Note: See TracChangeset
for help on using the changeset viewer.