friendica/mod/opensearch.php

19 rader
297 B
PHP
Normal vy Historik

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