]> git.mxchange.org Git - friendica.git/commitdiff
Fixing Mainentance & Exception vie
authorPhilipp <admin@philipp.info>
Fri, 19 Nov 2021 21:50:48 +0000 (22:50 +0100)
committerPhilipp <admin@philipp.info>
Fri, 19 Nov 2021 21:51:12 +0000 (22:51 +0100)
src/App.php

index 2dd8f9d1ab1e0581a74f38b7432cb1b4492a822e..f4534c01583c9456d4a0686d659d6b507249cd26 100644 (file)
@@ -703,7 +703,7 @@ class App
                        $page['page_title'] = $moduleName;
 
                        if (!$this->mode->isInstall() && !$this->mode->has(App\Mode::MAINTENANCEDISABLED)) {
-                               $module = new ModuleController('maintenance', new Maintenance());
+                               $module = new ModuleController('maintenance', new Maintenance($this->l10n));
                        } else {
                                // determine the module class and save it to the module instance
                                // @todo there's an implicit dependency due SESSION::start(), so it has to be called here (yet)
@@ -713,7 +713,7 @@ class App
                        // Let the module run it's internal process (init, get, post, ...)
                        $module->run($this->l10n, $this->baseURL, $this->logger, $this->profiler, $_SERVER, $_POST);
                } catch (HTTPException $e) {
-                       ModuleHTTPException::rawContent($e);
+                       (new ModuleHTTPException())->rawContent($e);
                }
 
                $page->run($this, $this->baseURL, $this->mode, $module, $this->l10n, $this->profiler, $this->config, $pconfig);