Changeset 3565 for trunk/wp-includes/pluggable-functions.php
- Timestamp:
- 02/22/2006 07:30:28 AM (20 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/pluggable-functions.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/pluggable-functions.php
r3563 r3565 247 247 header("Location: $location"); 248 248 } 249 endif; 250 251 if ( !function_exists('wp_get_cookie_login') ): 252 function wp_get_cookie_login() { 253 if ( empty($_COOKIE[USER_COOKIE]) || empty($_COOKIE[PASS_COOKIE]) ) 254 return false; 255 256 return array('login' => $_COOKIE[USER_COOKIE], 'password' => $_COOKIE[PASS_COOKIE]); 257 } 258 249 259 endif; 250 260
Note: See TracChangeset
for help on using the changeset viewer.