Changeset 30416 for branches/3.7/src/wp-includes/pluggable.php
- Timestamp:
- 11/20/2014 12:05:39 PM (10 years ago)
- Location:
- branches/3.7
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.7
-
branches/3.7/src/wp-includes/pluggable.php
r29410 r30416 1493 1493 // If the hash is still md5... 1494 1494 if ( strlen($hash) <= 32 ) { 1495 $check = ( $hash == md5($password) );1495 $check = hash_equals( $hash, md5( $password ) ); 1496 1496 if ( $check && $user_id ) { 1497 1497 // Rehash using new hash.
Note: See TracChangeset
for help on using the changeset viewer.