]> git.mxchange.org Git - friendica.git/blobdiff - src/App/Router.php
Merge pull request #11515 from annando/issue-11492
[friendica.git] / src / App / Router.php
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) {