summaryrefslogtreecommitdiff
path: root/actions
diff options
context:
space:
mode:
Diffstat (limited to 'actions')
-rw-r--r--actions/newmessage.php2
-rw-r--r--actions/newnotice.php4
2 files changed, 3 insertions, 3 deletions
diff --git a/actions/newmessage.php b/actions/newmessage.php
index 67695210e..da48fc7e7 100644
--- a/actions/newmessage.php
+++ b/actions/newmessage.php
@@ -122,7 +122,7 @@ class NewmessageAction extends Action {
array($this, 'show_top'));
if ($msg) {
- common_element('p', 'error', $msg);
+ common_element('p', array('id'=>'error'), $msg);
}
common_show_footer();
diff --git a/actions/newnotice.php b/actions/newnotice.php
index 142478341..42b48923f 100644
--- a/actions/newnotice.php
+++ b/actions/newnotice.php
@@ -116,7 +116,7 @@ class NewnoticeAction extends Action {
common_element('title', null, _('Ajax Error'));
common_element_end('head');
common_element_start('body');
- common_element('p', array('class' => 'error'), $msg);
+ common_element('p', array('id' => 'error'), $msg);
common_element_end('body');
common_element_end('html');
}
@@ -141,7 +141,7 @@ class NewnoticeAction extends Action {
common_show_header(_('New notice'), NULL, $content,
array($this, 'show_top'));
if ($msg) {
- common_element('p', 'error', $msg);
+ common_element('p', array('id' => 'error'), $msg);
}
common_show_footer();
}