summaryrefslogtreecommitdiff
path: root/actions/newnotice.php
diff options
context:
space:
mode:
authorSarven Capadisli <csarven@controlyourself.ca>2008-12-16 02:18:18 -0500
committerSarven Capadisli <csarven@controlyourself.ca>2008-12-16 02:18:18 -0500
commit946eee42568918903bb357d5cfea57fbe40c4f6e (patch)
tree414a946473c79c72fccc302646321dc39fd387c1 /actions/newnotice.php
parentc0977dfa1b03a65d420c2de75cfc72b1694b4b44 (diff)
Direct message XHR response fix for IE and minor tweaks
darcs-hash:20081216071818-efd22-d2e59bb60a236538452be356f38d0974f35f0107.gz
Diffstat (limited to 'actions/newnotice.php')
-rw-r--r--actions/newnotice.php4
1 files changed, 2 insertions, 2 deletions
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();
}