]> git.mxchange.org Git - friendica.git/blobdiff - mod/opensearch.php
Fixes:
[friendica.git] / mod / opensearch.php
index a599ddc1eddadfea648c9d755ed7a6ca1783a6a8..8a427908bc244277bfca2e10c7602102b5151bf4 100644 (file)
@@ -1,18 +1,20 @@
 <?php
-    function opensearch_content(App $a) {
 
-               $tpl = get_markup_template('opensearch.tpl');
+use Friendica\App;
+use Friendica\Core\System;
 
-               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, [
+               '$baseurl' => System::baseUrl(),
+               '$nodename' => $a->get_hostname(),
+       ]);
 
-       }
-?>
\ No newline at end of file
+       echo $o;
+
+       killme();
+}