From cf7e0adf8b8856684d0660dbaec134a1103b6db4 Mon Sep 17 00:00:00 2001 From: westi Date: Thu, 28 Feb 2008 21:11:47 +0000 Subject: [PATCH] Use a default size that gravatar supports rather than one it doesn't. Fixes #6033 props josephscott. git-svn-id: http://svn.automattic.com/wordpress/trunk@7091 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/pluggable.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/pluggable.php b/wp-includes/pluggable.php index fc5c35d75..3a95a6731 100644 --- a/wp-includes/pluggable.php +++ b/wp-includes/pluggable.php @@ -1182,7 +1182,7 @@ if ( !function_exists( 'get_avatar' ) ) : * @param string $default URL to a default image to use if no avatar is available * @return string tag for the user's avatar */ -function get_avatar( $id_or_email, $size = '96', $default = '' ) { +function get_avatar( $id_or_email, $size = '64', $default = '' ) { if ( ! get_option('show_avatars') ) return false;