From 9325fec4f05caeec9742bb9af7ce0c1db08ca329 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 20 Nov 2008 19:36:08 -0500 Subject: [PATCH] a little better presentation for tag-other darcs-hash:20081121003608-84dde-1bae74a9d4635423965c8f18a7555c2b0eab982e.gz --- actions/tagother.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/actions/tagother.php b/actions/tagother.php index a5129faee1..1bf148743b 100644 --- a/actions/tagother.php +++ b/actions/tagother.php @@ -58,17 +58,17 @@ class TagotherAction extends Action { $avatar = $profile->getAvatar(AVATAR_PROFILE_SIZE); - if ($avatar) { - common_element('img', array('src' => $avatar->url, - 'class' => 'avatar profile', - 'width' => AVATAR_PROFILE_SIZE, - 'height' => AVATAR_PROFILE_SIZE, - 'alt' => $profile->nickname)); - } + common_element('img', array('src' => ($avatar) ? common_avatar_display_url($avatar) : common_default_avatar(AVATAR_PROFILE_SIZE), + 'class' => 'avatar stream', + 'width' => AVATAR_PROFILE_SIZE, + 'height' => AVATAR_PROFILE_SIZE, + 'alt' => + ($profile->fullname) ? $profile->fullname : + $profile->nickname)); common_element('a', array('href' => $profile->profileurl, 'class' => 'external profile nickname'), - $nickname); + $profile->nickname); if ($profile->fullname) { common_element_start('div', 'fullname');