summaryrefslogtreecommitdiff
path: root/actions/repeat.php
diff options
context:
space:
mode:
Diffstat (limited to 'actions/repeat.php')
-rw-r--r--actions/repeat.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/actions/repeat.php b/actions/repeat.php
index a1c5f443f..b75523498 100644
--- a/actions/repeat.php
+++ b/actions/repeat.php
@@ -106,13 +106,17 @@ class RepeatAction extends Action
{
$repeat = $this->notice->repeat($this->user->id, 'web');
+ common_broadcast_notice($repeat);
+
if ($this->boolean('ajax')) {
$this->startHTML('text/xml;charset=utf-8');
$this->elementStart('head');
$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 {