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 | |
parent | d6873beb9b2f17d62b90933e5974117a2fd713f1 (diff) |
Don't show repeater avatar in notice lists
-rw-r--r-- | lib/noticelist.php | 11 | ||||
-rw-r--r-- | plugins/Realtime/realtimeupdate.js | 1 |
2 files changed, 0 insertions, 12 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'); diff --git a/plugins/Realtime/realtimeupdate.js b/plugins/Realtime/realtimeupdate.js index 18f00f22a..b57451e20 100644 --- a/plugins/Realtime/realtimeupdate.js +++ b/plugins/Realtime/realtimeupdate.js @@ -159,7 +159,6 @@ RealtimeUpdate = { ru = repeat['user']; ni = ni + "<span class=\"repeat vcard\">Repeated by " + "<a href=\"" + ru['profile_url'] + "\" class=\"url\">" + - "<img src=\"" + ru['profile_image_url'] + "\" class=\"avatar photo\" width=\"24\" height=\"24\" alt=\"" + ru['screen_name'] + "\"/>" + "<span class=\"nickname\">"+ ru['screen_name'] + "</span></a></span>"; } |