Make WordPress Core

Ticket #19614: 19614.patch

File 19614.patch, 504 bytes (added by evansolomon, 13 years ago)
  • wp-includes/pluggable.php

     
    16281628                        $default = $avatar_default;
    16291629        }
    16301630
    1631         if ( !empty($email) )
     1631        if ( !empty($email) ) {
     1632                if( false !== strpos( $email, ' ' ) )
     1633                        $email = str_replace( ' ', '', $email );
    16321634                $email_hash = md5( strtolower( $email ) );
     1635        }
    16331636
    16341637        if ( is_ssl() ) {
    16351638                $host = 'https://secure.gravatar.com';