From 373df31817c413b03ebb9a1fb1351990fe9f4b29 Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Mon, 22 Oct 2018 18:07:00 -0400 Subject: [PATCH] Fix wrong namespace for Core\System in App --- src/App.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } }