]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Outbox.php
Changed OpenID registration
[friendica.git] / src / Module / Outbox.php
index 27dcd5c1f44b905b51423e6f3cccc3bfe8e43e6b..4fc05076310ad2593fb6dff4d469b9c243eb6da1 100644 (file)
@@ -20,15 +20,15 @@ class Outbox extends BaseModule
 
                // @TODO: Replace with parameter from router
                if (empty($a->argv[1])) {
-                       System::httpExit(404);
+                       throw new \Friendica\Network\HTTPException\NotFoundException();
                }
 
                $owner = User::getOwnerDataByNick($a->argv[1]);
                if (empty($owner)) {
-                       System::httpExit(404);
+                       throw new \Friendica\Network\HTTPException\NotFoundException();
                }
 
-               $page = defaults($_REQUEST, 'page', null);
+               $page = $_REQUEST['page'] ?? null;
 
                /// @todo Add Authentication to enable fetching of non public content
                // $requester = HTTPSignature::getSigner('', $_SERVER);