]> git.mxchange.org Git - friendica.git/commitdiff
Initialize parameter with $server for all Router cases including Maintenance mode
authorHypolite Petovan <hypolite@mrpetovan.com>
Thu, 8 Dec 2022 15:10:23 +0000 (10:10 -0500)
committerHypolite Petovan <hypolite@mrpetovan.com>
Thu, 8 Dec 2022 15:10:23 +0000 (10:10 -0500)
- Address https://github.com/friendica/friendica/issues/11992#issuecomment-1339614287
- Address https://github.com/friendica/friendica/issues/11992#issuecomment-1339909728

src/App/Router.php

index 5b915c0e6a3ea086b1ac97b8d92de94c8c392710..9dac021b3aec7cf887ee639fd793ca8a99a74ca1 100644 (file)
@@ -150,6 +150,8 @@ class Router
                if ($this->baseRoutesFilepath && !file_exists($this->baseRoutesFilepath)) {
                        throw new HTTPException\InternalServerErrorException('Routes file path does\'n exist.');
                }
+
+               $this->parameters = [$this->server];
        }
 
        /**
@@ -293,8 +295,6 @@ class Router
 
                $dispatcher = new FriendicaGroupCountBased($this->getCachedDispatchData());
 
-               $this->parameters = [$this->server];
-
                try {
                        // Check if the HTTP method is OPTIONS and return the special Options Module with the possible HTTP methods
                        if ($this->args->getMethod() === static::OPTIONS) {