Make WordPress Core

Changeset 13560


Ignore:
Timestamp:
03/02/2010 09:59:15 PM (14 years ago)
Author:
matt
Message:

Better subdomains for faster Gravatar loading. An update to [13385].

File:
1 edited

Legend:

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

    r13456 r13560  
    16201620    } else {
    16211621        if ( !empty($email) )
    1622             $host = sprintf( "http://w%d.gravatar.com", ( hexdec( $email_hash{0} ) % 2 ) );
     1622            $host = sprintf( "http://%d.gravatar.com", ( hexdec( $email_hash{0} ) % 2 ) );
    16231623        else
    1624             $host = 'http://www.gravatar.com';
     1624            $host = 'http://0.gravatar.com';
    16251625    }
    16261626
Note: See TracChangeset for help on using the changeset viewer.