]> git.mxchange.org Git - friendica.git/blobdiff - mod/opensearch.php
Diaspora: Fix class name case + add self
[friendica.git] / mod / opensearch.php
index f3d55a102950673255158347af47db6c64937d1c..ff748d1c5360cbc2a0d28ade8d196a8a7b7fe5df 100644 (file)
@@ -1,18 +1,18 @@
 <?php
-if(! function_exists('opensearch_content')) {
-  function opensearch_content(&$a) {
+    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