Make WordPress Core


Ignore:
Timestamp:
02/05/2008 06:47:27 AM (17 years ago)
Author:
ryan
Message:

Trailing whitespace cleanup

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/pluggable.php

    r6711 r6726  
    505505    $key = wp_hash($username . $expiration);
    506506    $hash = hash_hmac('md5', $username . $expiration, $key);
    507    
     507
    508508    if ( $hmac != $hash )
    509509        return false;
     
    587587    setcookie(PASS_COOKIE, ' ', time() - 31536000, COOKIEPATH, COOKIE_DOMAIN);
    588588    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);
    590590}
    591591endif;
     
    759759 *
    760760 * @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
    762762 *      WordPress host string and $location host string.
    763763 *
     
    10881088        $wp_hasher = new PasswordHash(8, TRUE);
    10891089    }
    1090    
    1091     return $wp_hasher->HashPassword($password); 
     1090
     1091    return $wp_hasher->HashPassword($password);
    10921092}
    10931093endif;
Note: See TracChangeset for help on using the changeset viewer.