Make WordPress Core


Ignore:
Timestamp:
11/18/2014 06:55:01 PM (10 years ago)
Author:
DrewAPicture
Message:

Add missing documentation for the $password parameter, passed to the check_password hook.

Props coffee2code.
Fixes #30311.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/pluggable.php

    r30122 r30381  
    19481948         * @since 2.5.0
    19491949         *
    1950          * @param bool   $check   Whether the passwords match.
    1951          * @param string $hash    The hashed password.
    1952          * @param int    $user_id User ID.
     1950         * @param bool   $check    Whether the passwords match.
     1951         * @param string $password The plaintext password.
     1952         * @param string $hash     The hashed password.
     1953         * @param int    $user_id  User ID.
    19531954         */
    19541955        return apply_filters( 'check_password', $check, $password, $hash, $user_id );
Note: See TracChangeset for help on using the changeset viewer.