X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FApp%2FRouter.php;h=6e390a84d9b145f4fcf76a86b1b30ff22001dc9c;hb=204e52ea307b182175ae0c64d6eb69c71a104658;hp=fd1cec362ff2947459dc9f8e2c750173a0f6e3fd;hpb=dc46af5ea14a9ba0487c7e524477a6ab42e775d3;p=friendica.git diff --git a/src/App/Router.php b/src/App/Router.php index fd1cec362f..6e390a84d9 100644 --- a/src/App/Router.php +++ b/src/App/Router.php @@ -262,12 +262,10 @@ class Router $this->parameters = []; - // Check if the HTTP method ist OPTIONS and return the special Options Module with the possible HTTP methods + // 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) {