Changes from trunk/src/wp-includes/pluggable.php at r26388 to branches/3.8/src/wp-includes/pluggable.php at r28054
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.8/src/wp-includes/pluggable.php
r26388 r28054 544 544 $hash = hash_hmac('md5', $username . '|' . $expiration, $key); 545 545 546 if ( $hmac != $hash) {546 if ( hash_hmac( 'md5', $hmac, $key ) !== hash_hmac( 'md5', $hash, $key ) ) { 547 547 do_action('auth_cookie_bad_hash', $cookie_elements); 548 548 return false;
Note: See TracChangeset
for help on using the changeset viewer.