]> git.mxchange.org Git - friendica.git/blobdiff - mod/filerm.php
Remove/replace killme() with *exit()
[friendica.git] / mod / filerm.php
index d240c2d6a757927df98f1bf81134889c7e69da16..f88c174cb0cd5ff5cb52856ca68458edbc79bb8a 100644 (file)
@@ -10,7 +10,7 @@ function filerm_content(App $a)
 {
        if (! local_user())
        {
-               killme();
+               exit();
        }
 
        $term = XML::unescape(trim($_GET['term']));
@@ -37,5 +37,5 @@ function filerm_content(App $a)
        }
 
        $a->internalRedirect('/network?f=&file=' . rawurlencode($term));
-       killme();
+       exit();
 }