Changeset 28053
- Timestamp:
- 04/08/2014 06:05:42 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/pluggable.php
r28007 r28053 648 648 $hash = hash_hmac('md5', $username . '|' . $expiration, $key); 649 649 650 if ( $hmac != $hash) {650 if ( hash_hmac( 'md5', $hmac, $key ) !== hash_hmac( 'md5', $hash, $key ) ) { 651 651 /** 652 652 * Fires if a bad authentication cookie hash is encountered.
Note: See TracChangeset
for help on using the changeset viewer.