diff options
author | Sarven Capadisli <csarven@status.net> | 2009-12-14 18:09:08 -0500 |
---|---|---|
committer | Sarven Capadisli <csarven@status.net> | 2009-12-14 18:09:08 -0500 |
commit | f8b187d5a4ac5eab1f025d61e30d5244cef6123d (patch) | |
tree | 6c17c401b7b1e10957df82a629ef5474da56c35d /lib/noticelist.php | |
parent | 607e98ee11f01a72a6ea7d755ce0f2dee68ff74a (diff) |
Initial representation for repeated notice
Diffstat (limited to 'lib/noticelist.php')
-rw-r--r-- | lib/noticelist.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/noticelist.php b/lib/noticelist.php index dd0a361c0..2165222ee 100644 --- a/lib/noticelist.php +++ b/lib/noticelist.php @@ -627,7 +627,9 @@ class NoticeListItem extends Widget if ($user && $user->id != $this->notice->profile_id) { $profile = $user->getProfile(); if ($profile->hasRepeated($this->notice->id)) { - $this->out->text(_('Repeated')); + $this->out->element('span', array('class' => 'repeated', + 'title' => _('Notice repeated')), + _('Repeated')); } else { $rf = new RepeatForm($this->out, $this->notice); $rf->show(); |