mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-06-28 14:20:15 +00:00
urlencode only when needed. Props spikeyslam. see #5775
git-svn-id: https://develop.svn.wordpress.org/trunk@7096 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -1207,13 +1207,12 @@ function get_avatar( $id_or_email, $size = '64', $default = '' ) {
|
||||
|
||||
if ( empty($default) )
|
||||
$default = "http://www.gravatar.com/avatar.php?gravatar_id=ad516503a11cd5ca435acc9bb6523536&size=$size"; // ad516503a11cd5ca435acc9bb6523536 == md5('unknown@gravatar.com')
|
||||
$default = urlencode( $default );
|
||||
|
||||
if ( !empty($email) ) {
|
||||
$out = 'http://www.gravatar.com/avatar.php?gravatar_id=';
|
||||
$out .= md5( strtolower( $email ) );
|
||||
$out .= "&size={$size}";
|
||||
$out .= "&default={$default}";
|
||||
$out .= '&default=' . urlencode( $default );
|
||||
|
||||
$rating = get_option('avatar_rating');
|
||||
if ( !empty( $rating ) )
|
||||
|
||||
Reference in New Issue
Block a user