]> git.mxchange.org Git - friendica.git/blobdiff - mod/subthread.php
Remove/replace killme() with *exit()
[friendica.git] / mod / subthread.php
index 90ab5a3aabbddf46c0db8d1f26ea98655ee3c7fe..3d7167303346db291ac90894645cf069313b402a 100644 (file)
@@ -13,8 +13,6 @@ use Friendica\Util\Security;
 use Friendica\Util\Strings;
 use Friendica\Util\XML;
 
-require_once 'include/items.php';
-
 function subthread_content(App $a) {
 
        if (!local_user() && !remote_user()) {
@@ -153,6 +151,6 @@ EOT;
 
        Addon::callHooks('post_local_end', $arr);
 
-       killme();
+       exit();
 
 }