Ticket #34889: plugable.diff
| File plugable.diff, 464 bytes (added by , 10 years ago) |
|---|
-
src/wp-includes/pluggable.php
2074 2074 function wp_check_password($password, $hash, $user_id = '') { 2075 2075 global $wp_hasher; 2076 2076 2077 $password = trim( $password ); 2078 2077 2079 // If the hash is still md5... 2078 2080 if ( strlen($hash) <= 32 ) { 2079 2081 $check = hash_equals( $hash, md5( $password ) );