mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-17 04:15:15 +02:00
Cleanup /format pre-move
This commit is contained in:
parent
f77632378b
commit
56ee734b00
85 changed files with 522 additions and 581 deletions
|
@ -1,18 +1,18 @@
|
|||
<?php
|
||||
function opensearch_content(App $a) {
|
||||
|
||||
$tpl = get_markup_template('opensearch.tpl');
|
||||
|
||||
header("Content-type: application/opensearchdescription+xml");
|
||||
function opensearch_content(App $a) {
|
||||
|
||||
$o = replace_macros($tpl, array(
|
||||
'$baseurl' => App::get_baseurl(),
|
||||
'$nodename' => $a->get_hostname(),
|
||||
));
|
||||
$tpl = get_markup_template('opensearch.tpl');
|
||||
|
||||
echo $o;
|
||||
header("Content-type: application/opensearchdescription+xml");
|
||||
|
||||
killme();
|
||||
$o = replace_macros($tpl, array(
|
||||
'$baseurl' => App::get_baseurl(),
|
||||
'$nodename' => $a->get_hostname(),
|
||||
));
|
||||
|
||||
}
|
||||
?>
|
||||
echo $o;
|
||||
|
||||
killme();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue