From 310d49b82a3dd6d5a688f291c51d86c02e0100c9 Mon Sep 17 00:00:00 2001 From: Philipp Holzer Date: Wed, 24 Oct 2018 20:24:22 +0200 Subject: [PATCH] removed use Friendica\Core\System again --- src/App.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/App.php b/src/App.php index a0558fedcd..7a579036ce 100644 --- a/src/App.php +++ b/src/App.php @@ -8,7 +8,6 @@ use Detection\MobileDetect; use DOMDocument; use DOMXPath; use Exception; -use Friendica\Core\System; use Friendica\Database\DBA; use Friendica\Network\HTTPException\InternalServerErrorException; @@ -2019,7 +2018,7 @@ class App { if (filter_var($toUrl, FILTER_VALIDATE_URL)) { - System::externalRedirect($toUrl); + Core\System::externalRedirect($toUrl); } else { $this->internalRedirect($toUrl); }