e36f2bb1fb
- Add short form array syntax to po2php.php generation
21 lines
337 B
PHP
21 lines
337 B
PHP
<?php
|
|
|
|
use Friendica\App;
|
|
use Friendica\Core\System;
|
|
|
|
function opensearch_content(App $a) {
|
|
|
|
$tpl = get_markup_template('opensearch.tpl');
|
|
|
|
header("Content-type: application/opensearchdescription+xml");
|
|
|
|
$o = replace_macros($tpl, [
|
|
'$baseurl' => System::baseUrl(),
|
|
'$nodename' => $a->get_hostname(),
|
|
]);
|
|
|
|
echo $o;
|
|
|
|
killme();
|
|
}
|