diff options
author | Evan Prodromou <evan@status.net> | 2009-12-15 16:08:44 -0500 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2009-12-15 16:08:44 -0500 |
commit | 608d1b206a01e1bd97e286a1003030ce89370913 (patch) | |
tree | d19eeb53329d50046a98ce8805a49a5b98a4ae42 /lib | |
parent | d6873beb9b2f17d62b90933e5974117a2fd713f1 (diff) |
Don't show repeater avatar in notice lists
Diffstat (limited to 'lib')
-rw-r--r-- | lib/noticelist.php | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/lib/noticelist.php b/lib/noticelist.php index 2165222ee..4c11ceed6 100644 --- a/lib/noticelist.php +++ b/lib/noticelist.php @@ -551,17 +551,6 @@ class NoticeListItem extends Widget $this->out->elementStart('a', $attrs); - $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' => - ($repeater->fullname) ? - $repeater->fullname : - $repeater->nickname)); - $this->out->element('span', 'nickname', $repeater->nickname); $this->out->elementEnd('a'); |