Changeset 9243 for trunk/wp-includes/pluggable.php
- Timestamp:
- 10/18/2008 08:46:30 PM (17 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/pluggable.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/pluggable.php
r9213 r9243 427 427 endif; 428 428 429 if ( !function_exists('wp_authenticate') ) : 429 430 /** 430 431 * Checks a user's login information and logs them in if it checks out. 431 432 * 432 * @since 2.5 433 * @since 2.5.0 433 434 * 434 435 * @param string $username User's username … … 436 437 * @return WP_Error|WP_User WP_User object if login successful, otherwise WP_Error object. 437 438 */ 438 if ( !function_exists('wp_authenticate') ) :439 439 function wp_authenticate($username, $password) { 440 440 $username = sanitize_user($username); … … 468 468 endif; 469 469 470 if ( !function_exists('wp_logout') ) : 470 471 /** 471 472 * Log the current user out. 472 473 * 473 * @since 2.5 474 */ 475 if ( !function_exists('wp_logout') ) : 474 * @since 2.5.0 475 */ 476 476 function wp_logout() { 477 477 wp_clear_auth_cookie();
Note: See TracChangeset
for help on using the changeset viewer.