friendica/mod/opensearch.php

18 lines
320 B
PHP
Raw Normal View History

2011-04-08 10:40:04 +02:00
<?php
function opensearch_content(&$a) {
2011-05-11 13:37:13 +02:00
$tpl = get_markup_template('opensearch.tpl');
2011-04-08 10:40:04 +02:00
header("Content-type: application/opensearchdescription+xml");
$o = replace_macros($tpl, array(
'$baseurl' => $a->get_baseurl(),
'$nodename' => $a->get_hostname(),
));
echo $o;
killme();
}
?>