Changeset 12408
- Timestamp:
- 12/15/2009 07:57:20 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/pluggable.php
r12402 r12408 100 100 101 101 if ( ! $user = wp_validate_auth_cookie() ) { 102 if ( empty($_COOKIE[LOGGED_IN_COOKIE]) || !$user = wp_validate_auth_cookie($_COOKIE[LOGGED_IN_COOKIE], 'logged_in') ) {102 if ( is_admin() || empty($_COOKIE[LOGGED_IN_COOKIE]) || !$user = wp_validate_auth_cookie($_COOKIE[LOGGED_IN_COOKIE], 'logged_in') ) { 103 103 wp_set_current_user(0); 104 104 return false;
Note: See TracChangeset
for help on using the changeset viewer.