From 0e45f22b06a77fc020478d262f5e74ee35a94fe7 Mon Sep 17 00:00:00 2001 From: Philipp Date: Tue, 4 Jan 2022 20:50:20 +0100 Subject: [PATCH] optimizations --- src/App/Page.php | 1 - src/App/Router.php | 4 +--- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/src/App/Page.php b/src/App/Page.php index 9e59ab9ae..0d7b16436 100644 --- a/src/App/Page.php +++ b/src/App/Page.php @@ -32,7 +32,6 @@ use Friendica\Core\Hook; use Friendica\Core\L10n; use Friendica\Core\Renderer; use Friendica\Core\Theme; -use Friendica\DI; use Friendica\Network\HTTPException; use Friendica\Util\Network; use Friendica\Util\Strings; diff --git a/src/App/Router.php b/src/App/Router.php index c21dfd44d..6e390a84d 100644 --- a/src/App/Router.php +++ b/src/App/Router.php @@ -264,10 +264,8 @@ class Router // Check if the HTTP method is OPTIONS and return the special Options Module with the possible HTTP methods if ($this->args->getMethod() === static::OPTIONS) { - $routeOptions = $dispatcher->getOptions($cmd); - $moduleClass = Options::class; - $this->parameters = ['allowedMethods' => $routeOptions]; + $this->parameters = ['allowedMethods' => $dispatcher->getOptions($cmd)]; } else { $routeInfo = $dispatcher->dispatch($this->args->getMethod(), $cmd); if ($routeInfo[0] === Dispatcher::FOUND) {