Using startXML() instead of deprecated common_start_xml()
This commit is contained in:
parent
18593afee7
commit
55c99d0018
|
@ -67,7 +67,7 @@ class OpensearchAction extends Action
|
||||||
$short_name = _('Notice Search');
|
$short_name = _('Notice Search');
|
||||||
}
|
}
|
||||||
header('Content-Type: text/html');
|
header('Content-Type: text/html');
|
||||||
common_start_xml();
|
$this->startXML();
|
||||||
$this->elementStart('OpenSearchDescription', array('xmlns' => 'http://a9.com/-/spec/opensearch/1.1/'));
|
$this->elementStart('OpenSearchDescription', array('xmlns' => 'http://a9.com/-/spec/opensearch/1.1/'));
|
||||||
$short_name = common_config('site', 'name').' '.$short_name;
|
$short_name = common_config('site', 'name').' '.$short_name;
|
||||||
$this->element('ShortName', null, $short_name);
|
$this->element('ShortName', null, $short_name);
|
||||||
|
@ -81,7 +81,7 @@ class OpensearchAction extends Action
|
||||||
$this->element('OutputEncoding', null, 'UTF-8');
|
$this->element('OutputEncoding', null, 'UTF-8');
|
||||||
$this->element('InputEncoding', null, 'UTF-8');
|
$this->element('InputEncoding', null, 'UTF-8');
|
||||||
$this->elementEnd('OpenSearchDescription');
|
$this->elementEnd('OpenSearchDescription');
|
||||||
common_end_xml();
|
$this->endXML();
|
||||||
}
|
}
|
||||||
|
|
||||||
function isReadOnly()
|
function isReadOnly()
|
||||||
|
|
Loading…
Reference in New Issue
Block a user