Changeset 36245
- Timestamp:
- 01/09/2016 08:51:13 PM (10 years ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 2 edited
-
pluggable.php (modified) (3 diffs)
-
user.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/pluggable.php
r36102 r36245 561 561 if ( !function_exists('wp_authenticate') ) : 562 562 /** 563 * Checks a user's login information and logs them in if it checks out.563 * Authenticate a user, confirming the login credentials are valid. 564 564 * 565 565 * @since 2.5.0 566 566 * 567 * @param string $username User's username 568 * @param string $password User's password 569 * @return WP_User|WP_Error WP_User object if login successful, otherwise WP_Error object. 567 * @param string $username User's username. 568 * @param string $password User's password. 569 * @return WP_User|WP_Error WP_User object if the credentials are valid, 570 * otherwise WP_Error. 570 571 */ 571 572 function wp_authenticate($username, $password) { … … 574 575 575 576 /** 576 * Filter the user to authenticate.577 * 578 * If a non-null value is passed, the filter will effectively short-circuit579 * authentication, returning an error instead.577 * Filter whether a set of user login credentials are valid. 578 * 579 * A WP_User object is returned if the credentials authenticate a user. 580 * WP_Error or null otherwise. 580 581 * 581 582 * @since 2.8.0 582 583 * 583 * @param null|WP_User $user User to authenticate. 584 * @param string $username User login. 585 * @param string $password User password 584 * @param null|WP_User|WP_Error $user WP_User if the user is authenticated. 585 * WP_Error or null otherwise. 586 * @param string $username User login. 587 * @param string $password User password 586 588 */ 587 589 $user = apply_filters( 'authenticate', null, $username, $password ); … … 842 844 if ( !function_exists('wp_set_auth_cookie') ) : 843 845 /** 844 * Sets the authentication cookies based on user ID.846 * Login a user by setting authentication cookies. 845 847 * 846 848 * The $remember parameter increases the time that the cookie will be kept. The -
trunk/src/wp-includes/user.php
r36085 r36245 8 8 9 9 /** 10 * Authenticate user with remember capability.10 * Authenticate and login a user with remember capability. 11 11 * 12 12 * The credentials is an array that has 'user_login', 'user_password', and … … 105 105 106 106 /** 107 * Authenticate the user using the username and password.107 * Authenticate a user, confirming the username and password are valid. 108 108 * 109 109 * @since 2.8.0
Note: See TracChangeset
for help on using the changeset viewer.