]> git.mxchange.org Git - friendica.git/blobdiff - mod/opensearch.php
Fixes:
[friendica.git] / mod / opensearch.php
index ff748d1c5360cbc2a0d28ade8d196a8a7b7fe5df..8a427908bc244277bfca2e10c7602102b5151bf4 100644 (file)
@@ -1,18 +1,20 @@
 <?php
-    function opensearch_content(&$a) {
-       
-               $tpl = get_markup_template('opensearch.tpl');
-       
-               header("Content-type: application/opensearchdescription+xml");
-       
-               $o = replace_macros($tpl, array(
-                       '$baseurl' => $a->get_baseurl(),
-                       '$nodename' => $a->get_hostname(),
-               ));
-               
-               echo $o;
-               
-               killme();
-               
-       }
-?>
\ No newline at end of file
+
+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();
+}