diff options
author | Zach Copley <zach@status.net> | 2010-01-28 18:15:50 +0000 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2010-01-28 18:15:50 +0000 |
commit | b96f30168cf4a6a36e5400fb9b00dec0c323e7d1 (patch) | |
tree | d0c2268569d47f4e18c0f54b345ce470d58bf2c9 /actions | |
parent | 558bf0f48907ad463872075c778c12bc5821f510 (diff) | |
parent | 22d9c32e7e755c36817912cb9e20554b23d211d4 (diff) |
Merge branch 'testing' of git@gitorious.org:statusnet/mainline into testing
Diffstat (limited to 'actions')
-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)); |