summaryrefslogtreecommitdiff
path: root/actions/showstream.php
diff options
context:
space:
mode:
authorCraig Andrews <candrews@integralblue.com>2010-01-28 16:13:06 -0500
committerCraig Andrews <candrews@integralblue.com>2010-01-28 16:13:06 -0500
commitd14651706cf728f116b7ae44c6a6e37b5eb918a4 (patch)
treef0fda86c2e0b8e56718a2e7c01dcb6c4df1835d3 /actions/showstream.php
parent065140400018dec28ed82fd31a754c94b7b87521 (diff)
parent8cdb319533a638a8f905cbc68c57bd4eca89a5aa (diff)
Merge branch '0.9.x' into 1.0.x
Diffstat (limited to 'actions/showstream.php')
-rw-r--r--actions/showstream.php17
1 files changed, 0 insertions, 17 deletions
diff --git a/actions/showstream.php b/actions/showstream.php
index cb9ade191..4d09a2d4e 100644
--- a/actions/showstream.php
+++ b/actions/showstream.php
@@ -285,23 +285,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));