Changeset 6726 for trunk/wp-includes/pluggable.php
- Timestamp:
- 02/05/2008 06:47:27 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/pluggable.php
r6711 r6726 505 505 $key = wp_hash($username . $expiration); 506 506 $hash = hash_hmac('md5', $username . $expiration, $key); 507 507 508 508 if ( $hmac != $hash ) 509 509 return false; … … 587 587 setcookie(PASS_COOKIE, ' ', time() - 31536000, COOKIEPATH, COOKIE_DOMAIN); 588 588 setcookie(USER_COOKIE, ' ', time() - 31536000, SITECOOKIEPATH, COOKIE_DOMAIN); 589 setcookie(PASS_COOKIE, ' ', time() - 31536000, SITECOOKIEPATH, COOKIE_DOMAIN); 589 setcookie(PASS_COOKIE, ' ', time() - 31536000, SITECOOKIEPATH, COOKIE_DOMAIN); 590 590 } 591 591 endif; … … 759 759 * 760 760 * @since 2.3 761 * @uses apply_filters() Calls 'allowed_redirect_hosts' on an array containing 761 * @uses apply_filters() Calls 'allowed_redirect_hosts' on an array containing 762 762 * WordPress host string and $location host string. 763 763 * … … 1088 1088 $wp_hasher = new PasswordHash(8, TRUE); 1089 1089 } 1090 1091 return $wp_hasher->HashPassword($password); 1090 1091 return $wp_hasher->HashPassword($password); 1092 1092 } 1093 1093 endif;
Note: See TracChangeset
for help on using the changeset viewer.