From: Hypolite Petovan Date: Mon, 22 Oct 2018 22:07:00 +0000 (-0400) Subject: Fix wrong namespace for Core\System in App X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=373df31817c413b03ebb9a1fb1351990fe9f4b29;p=friendica.git Fix wrong namespace for Core\System in App --- diff --git a/src/App.php b/src/App.php index e576eb2358..081e7785e5 100644 --- a/src/App.php +++ b/src/App.php @@ -2004,6 +2004,6 @@ class App } $redirectTo = $this->getBaseURL($ssl) . '/' . ltrim($toUrl, '/'); - System::externalRedirect($redirectTo); + Core\System::externalRedirect($redirectTo); } }