summaryrefslogtreecommitdiff
path: root/classes/Channel.php
diff options
context:
space:
mode:
Diffstat (limited to 'classes/Channel.php')
-rw-r--r--classes/Channel.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/classes/Channel.php b/classes/Channel.php
index 34735c450..bcc0c36b5 100644
--- a/classes/Channel.php
+++ b/classes/Channel.php
@@ -124,23 +124,23 @@ class WebChannel extends Channel {
class AjaxWebChannel extends WebChannel {
function output($user, $text) {
- common_start_html('text/xml;charset=utf-8', false);
+ common_start_html('text/xml;charset=utf-8', true);
common_element_start('head');
common_element('title', null, _('Command results'));
common_element_end('head');
common_element_start('body');
- common_element('p', array('class' => 'command_results'), $text);
+ common_element('p', array('id' => 'command_result'), $text);
common_element_end('body');
common_element_end('html');
}
function error($user, $text) {
- common_start_html('text/xml;charset=utf-8', false);
+ common_start_html('text/xml;charset=utf-8', true);
common_element_start('head');
common_element('title', null, _('Ajax Error'));
common_element_end('head');
common_element_start('body');
- common_element('p', array('class' => 'error'), $text);
+ common_element('p', array('id' => 'error'), $text);
common_element_end('body');
common_element_end('html');
}