From c3f4c6a97b0f9cfa557e337a0caffbe16e0c17d6 Mon Sep 17 00:00:00 2001 From: Peter Westwood Date: Sat, 15 Mar 2008 08:27:28 +0000 Subject: [PATCH] Change the default size avatar back to 96 now we are using the new gravatar.com api which supports bigger sizes. git-svn-id: https://develop.svn.wordpress.org/trunk@7308 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/pluggable.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/pluggable.php b/wp-includes/pluggable.php index 395be0776a..97e4e4f759 100644 --- a/wp-includes/pluggable.php +++ b/wp-includes/pluggable.php @@ -1182,12 +1182,12 @@ 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 = '64', $default = '' ) { +function get_avatar( $id_or_email, $size = '96', $default = '' ) { if ( ! get_option('show_avatars') ) return false; if ( !is_numeric($size) ) - $size = '64'; + $size = '96'; $email = ''; if ( is_numeric($id_or_email) ) {