friendica/mod/opensearch.php

18 lines
320 B
PHP
Raw Normal View History

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