diff --git a/wp-includes/pluggable.php b/wp-includes/pluggable.php index 4b4e0e0dc8..85b2a4e7c6 100644 --- a/wp-includes/pluggable.php +++ b/wp-includes/pluggable.php @@ -1121,7 +1121,9 @@ function wp_check_password($password, $hash) { $wp_hasher = new PasswordHash(8, TRUE); } - return $wp_hasher->CheckPassword($password, $hash); + $check = $wp_hasher->CheckPassword($password, $hash); + + return apply_filters('check_password', $check, $password, $hash); } endif;