]> git.mxchange.org Git - friendica.git/commitdiff
optimizations
authorPhilipp <admin@philipp.info>
Tue, 4 Jan 2022 19:50:20 +0000 (20:50 +0100)
committerPhilipp <admin@philipp.info>
Tue, 4 Jan 2022 19:59:29 +0000 (20:59 +0100)
src/App/Page.php
src/App/Router.php

index 9e59ab9ae7aeaf6303f605ada1fa51ba4e9b5685..0d7b1643635cff55cab6248a8ff96c464f245fb8 100644 (file)
@@ -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;
index c21dfd44d9bbca290665a76c41da9c213a8f0b97..6e390a84d9b145f4fcf76a86b1b30ff22001dc9c 100644 (file)
@@ -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) {