]> git.mxchange.org Git - friendica.git/blobdiff - src/App/Router.php
API: Accept "redirect_uris" as both array and string
[friendica.git] / src / App / Router.php
index 9dac021b3aec7cf887ee639fd793ca8a99a74ca1..0bd66d40f94aedd84983af88f81fd71e5097f4c8 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2010-2022, the Friendica project
+ * @copyright Copyright (C) 2010-2023, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -299,12 +299,12 @@ 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) {
                                $this->moduleClass = Options::class;
-                               $this->parameters  = ['allowedMethods' => $dispatcher->getOptions($cmd)];
+                               $this->parameters[] = ['AllowedMethods' => $dispatcher->getOptions($cmd)];
                        } else {
                                $routeInfo = $dispatcher->dispatch($this->args->getMethod(), $cmd);
                                if ($routeInfo[0] === Dispatcher::FOUND) {
                                        $this->moduleClass = $routeInfo[1];
-                                       $this->parameters[]  = $routeInfo[2];
+                                       $this->parameters[] = $routeInfo[2];
                                } else if ($routeInfo[0] === Dispatcher::METHOD_NOT_ALLOWED) {
                                        throw new HTTPException\MethodNotAllowedException($this->l10n->t('Method not allowed for this module. Allowed method(s): %s', implode(', ', $routeInfo[1])));
                                } else {