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 /actions/repeat.php | |
parent | 607e98ee11f01a72a6ea7d755ce0f2dee68ff74a (diff) |
Initial representation for repeated notice
Diffstat (limited to 'actions/repeat.php')
-rw-r--r-- | actions/repeat.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/actions/repeat.php b/actions/repeat.php index a1c5f443f..38d6efa6c 100644 --- a/actions/repeat.php +++ b/actions/repeat.php @@ -112,7 +112,9 @@ class RepeatAction extends Action $this->element('title', null, _('Repeated')); $this->elementEnd('head'); $this->elementStart('body'); - $this->element('p', array('id' => 'repeat_response'), _('Repeated!')); + $this->element('p', array('id' => 'repeat_response', + 'class' => 'repeated'), + _('Repeated!')); $this->elementEnd('body'); $this->elementEnd('html'); } else { |