From: Sarven Capadisli Date: Tue, 3 Feb 2009 21:46:09 +0000 (+0000) Subject: Fixed ajaxErrorMsg(). Using startHTML() instead of common_start_html() X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=32b1bb381acd14ec6a0d98afc5c39247b1d5a027;p=quix0rs-gnu-social.git Fixed ajaxErrorMsg(). Using startHTML() instead of common_start_html() --- diff --git a/actions/newnotice.php b/actions/newnotice.php index 5142cb5ff2..e3974cd07d 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');