In the admin, do not use auto-generated Gravatar images for comment authors.

This makes it easier to recognize Gravatars (or lack thereof) when moderating comments.

props solarissmoke.
fixes #7054.



git-svn-id: https://develop.svn.wordpress.org/trunk@25091 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin
2013-08-22 20:07:51 +00:00
parent 463fde4ec0
commit 0c24a916d4
2 changed files with 2 additions and 2 deletions

View File

@@ -148,7 +148,7 @@ function get_pending_comments_num( $post_id ) {
*/
function floated_admin_avatar( $name ) {
global $comment;
$avatar = get_avatar( $comment, 32 );
$avatar = get_avatar( $comment, 32, 'mystery' );
return "$avatar $name";
}