]> git.mxchange.org Git - friendica.git/blobdiff - mod/fetch.php
Remove/replace killme() with *exit()
[friendica.git] / mod / fetch.php
index 5dcedb1aafdca58b6b8d0a01b58ed8611fe88155..1af8d078551d54a2b52bfdf4a1da83e5e6b24f23 100644 (file)
@@ -40,7 +40,7 @@ function fetch_init(App $a)
 
                                header("HTTP/1.1 301 Moved Permanently");
                                header("Location:".$location);
-                               killme();
+                               exit();
                        }
                }
 
@@ -60,5 +60,5 @@ function fetch_init(App $a)
        header("Content-Type: application/magic-envelope+xml; charset=utf-8");
        echo Diaspora::buildMagicEnvelope($xml, $user);
 
-       killme();
+       exit();
 }