diff options
author | Sarven Capadisli <csarven@controlyourself.ca> | 2009-02-03 21:46:09 +0000 |
---|---|---|
committer | Sarven Capadisli <csarven@controlyourself.ca> | 2009-02-03 21:46:09 +0000 |
commit | 32b1bb381acd14ec6a0d98afc5c39247b1d5a027 (patch) | |
tree | df0ef213625ae20fdb3560215ba5ac70117b3ad6 | |
parent | aafb73755e7fbeb1b0e4198ce727c3ee1c8a5c94 (diff) |
Fixed ajaxErrorMsg(). Using startHTML() instead of common_start_html()
-rw-r--r-- | actions/newnotice.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/newnotice.php b/actions/newnotice.php index 5142cb5ff..e3974cd07 100644 --- a/actions/newnotice.php +++ b/actions/newnotice.php @@ -195,7 +195,7 @@ class NewnoticeAction extends Action function ajaxErrorMsg($msg) { - common_start_html('text/xml;charset=utf-8', true); + $this->startHTML('text/xml;charset=utf-8', true); $this->elementStart('head'); $this->element('title', null, _('Ajax Error')); $this->elementEnd('head'); |