]> git.mxchange.org Git - friendica.git/blobdiff - mod/pubsub.php
Fixing some notice again
[friendica.git] / mod / pubsub.php
index 1245c94628d5d589bea20839b141c3027a6d02d6..8d6e81a68523e6e862661130205322eb5c5225dc 100644 (file)
@@ -9,15 +9,13 @@ use Friendica\Protocol\OStatus;
 use Friendica\Util\Strings;
 use Friendica\Core\System;
 
-require_once 'include/items.php';
-
 function hub_return($valid, $body)
 {
        if ($valid) {
                header($_SERVER["SERVER_PROTOCOL"] . ' 200 OK');
                echo $body;
        } else {
-               System::httpExit(404, ['title' => L10n::t('Not found.')]);
+               System::httpExit(404);
        }
        killme();
 }