]> git.mxchange.org Git - friendica.git/blobdiff - mod/fbrowser.php
Remove/replace killme() with *exit()
[friendica.git] / mod / fbrowser.php
index d5310f4577144600437f607b38da4451654e20f3..c6e669d0228d67d82d3aa2e3af624ebef0564947 100644 (file)
@@ -18,11 +18,11 @@ use Friendica\Object\Image;
 function fbrowser_content(App $a)
 {
        if (!local_user()) {
-               killme();
+               exit();
        }
 
        if ($a->argc == 1) {
-               killme();
+               exit();
        }
 
        $template_file = "filebrowser.tpl";
@@ -146,6 +146,6 @@ function fbrowser_content(App $a)
                return $o;
        } else {
                echo $o;
-               killme();
+               exit();
        }
 }