diff --git a/wp-includes/pluggable.php b/wp-includes/pluggable.php index 02a31d52f1..fc5c35d759 100644 --- a/wp-includes/pluggable.php +++ b/wp-includes/pluggable.php @@ -1211,7 +1211,7 @@ function get_avatar( $id_or_email, $size = '96', $default = '' ) { if ( !empty($email) ) { $out = 'http://www.gravatar.com/avatar.php?gravatar_id='; - $out .= md5( $email ); + $out .= md5( strtolower( $email ) ); $out .= "&size={$size}"; $out .= "&default={$default}";