From: Philipp Holzer Date: Fri, 3 May 2019 13:08:50 +0000 (+0200) Subject: Add redirect for fetch X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=21aa82e06414fd5e937437602436157e09ef8745;p=friendica.git Add redirect for fetch --- diff --git a/src/Module/Diaspora/Fetch.php b/src/Module/Diaspora/Fetch.php index e6f94a958e..46d9388062 100644 --- a/src/Module/Diaspora/Fetch.php +++ b/src/Module/Diaspora/Fetch.php @@ -44,10 +44,7 @@ class Fetch extends BaseModule if (Strings::normaliseLink($host) != Strings::normaliseLink($app->getBaseURL())) { $location = $host . "/fetch/" . $app->argv[1] . "/" . urlencode($guid); - - header("HTTP/1.1 301 Moved Permanently"); - header("Location:" . $location); - exit(); + $app->redirect($location); } }