]> git.mxchange.org Git - friendica.git/blobdiff - mod/filer.php
Remove/replace killme() with *exit()
[friendica.git] / mod / filer.php
index 4580dc6f67fd8a8e5051aac6e21129afc0288437..0d9afe638b48b16ae681efc9f6aad0e026912fad 100644 (file)
@@ -13,7 +13,7 @@ use Friendica\Util\XML;
 function filer_content(App $a)
 {
        if (! local_user()) {
-               killme();
+               exit();
        }
 
        $term = XML::unescape(trim(defaults($_GET, 'term', '')));
@@ -38,5 +38,5 @@ function filer_content(App $a)
 
                echo $o;
        }
-       killme();
+       exit();
 }