Make WordPress Core

Changeset 19702 for trunk/wp-login.php


Ignore:
Timestamp:
01/06/2012 06:31:43 PM (13 years ago)
Author:
duck_
Message:

Fix mistakes in parameter documentation and add some missing param docs. See #19756.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-login.php

    r19687 r19702  
    240240 * @param string $key Hash to validate sending user's password
    241241 * @param string $login The user login
    242  *
    243  * @return object|WP_Error
     242 * @return object|WP_Error User's database row on success, error object for invalid keys
    244243 */
    245244function check_password_reset_key($key, $login) {
     
    265264 * Handles resetting the user's password.
    266265 *
    267  * @uses $wpdb WordPress Database object
    268  *
    269  * @param string $key Hash to validate sending user's password
     266 * @param object $user The user
     267 * @param string $new_pass New password for the user in plaintext
    270268 */
    271269function reset_password($user, $new_pass) {
Note: See TracChangeset for help on using the changeset viewer.