Just pass the comment object to get_avatar in floated_admin_avatar rather than duplicating logic. Fixes #12291 props Otto42.

git-svn-id: https://develop.svn.wordpress.org/trunk@13420 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Peter Westwood 2010-02-25 22:19:03 +00:00
parent 4b53dbcf81
commit a85f6a4122
1 changed files with 2 additions and 11 deletions

View File

@ -142,7 +142,7 @@ function get_pending_comments_num( $post_id ) {
/**
* Add avatars to relevant places in admin, or try to.
*
* @since unknown
* @since 2.5.0
* @uses $comment
*
* @param string $name User name.
@ -150,16 +150,7 @@ function get_pending_comments_num( $post_id ) {
*/
function floated_admin_avatar( $name ) {
global $comment;
$id = $avatar = false;
if ( $comment->comment_author_email )
$id = $comment->comment_author_email;
if ( $comment->user_id )
$id = $comment->user_id;
if ( $id )
$avatar = get_avatar( $id, 32 );
$avatar = get_avatar( $comment, 32 );
return "$avatar $name";
}