Make WordPress Core

Ticket #30311: 30311.diff

File 30311.diff, 700 bytes (added by coffee2code, 11 years ago)

Patch mentioned in ticket description.

  • src/wp-includes/pluggable.php

     
    19471947                 *
    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 );
    19551956        }