diff options
author | Sarven Capadisli <csarven@status.net> | 2010-01-28 15:06:03 +0100 |
---|---|---|
committer | Sarven Capadisli <csarven@status.net> | 2010-01-28 15:08:33 +0100 |
commit | 17f2096d7060d3ed3e0c6992b526390e34980c08 (patch) | |
tree | 043e888859662a45ca5e431dafc5dd2a9d63737a /actions/showstream.php | |
parent | 588f5ec36bdaf03cedc5799918ba4bceff52fa2d (diff) |
Removed avatar from repeat of username (matches noticelist)
Diffstat (limited to 'actions/showstream.php')
-rw-r--r-- | actions/showstream.php | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/actions/showstream.php b/actions/showstream.php index 90ff67073..c52919386 100644 --- a/actions/showstream.php +++ b/actions/showstream.php @@ -291,23 +291,6 @@ class ProfileNoticeListItem extends NoticeListItem $this->out->elementStart('span', 'repeat'); - $this->out->elementStart('a', $attrs); - - $avatar = $this->profile->getAvatar(AVATAR_MINI_SIZE); - - $this->out->element('img', array('src' => ($avatar) ? - $avatar->displayUrl() : - Avatar::defaultImage(AVATAR_MINI_SIZE), - 'class' => 'avatar photo', - 'width' => AVATAR_MINI_SIZE, - 'height' => AVATAR_MINI_SIZE, - 'alt' => - ($this->profile->fullname) ? - $this->profile->fullname : - $this->profile->nickname)); - - $this->out->elementEnd('a'); - $text_link = XMLStringer::estring('a', $attrs, $this->profile->nickname); $this->out->raw(sprintf(_('Repeat of %s'), $text_link)); |