summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSarven Capadisli <csarven@plantard.controlezvous.ca>2009-02-01 23:43:07 +0000
committerSarven Capadisli <csarven@plantard.controlezvous.ca>2009-02-01 23:43:07 +0000
commit55c99d0018c5fafe7f47f14e07ec28c883f55183 (patch)
treef8f10a46ff31f7826eeb1c08c3b88b671e143139
parent18593afee718b086f953edc32d001f6542eec744 (diff)
Using startXML() instead of deprecated common_start_xml()
-rw-r--r--actions/opensearch.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/opensearch.php b/actions/opensearch.php
index 7709249bb..2eb818306 100644
--- a/actions/opensearch.php
+++ b/actions/opensearch.php
@@ -67,7 +67,7 @@ class OpensearchAction extends Action
$short_name = _('Notice Search');
}
header('Content-Type: text/html');
- common_start_xml();
+ $this->startXML();
$this->elementStart('OpenSearchDescription', array('xmlns' => 'http://a9.com/-/spec/opensearch/1.1/'));
$short_name = common_config('site', 'name').' '.$short_name;
$this->element('ShortName', null, $short_name);
@@ -81,7 +81,7 @@ class OpensearchAction extends Action
$this->element('OutputEncoding', null, 'UTF-8');
$this->element('InputEncoding', null, 'UTF-8');
$this->elementEnd('OpenSearchDescription');
- common_end_xml();
+ $this->endXML();
}
function isReadOnly()