]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Maintenance.php
spelling: one
[friendica.git] / src / Module / Maintenance.php
index 36deee83d339c783f3f95262b2190304eac1527c..67f65b8e3962fbdc5392b653918e6230ba7d60ce 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2020, Friendica
+ * @copyright Copyright (C) 2010-2023, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -34,9 +34,9 @@ use Friendica\Util\Strings;
  */
 class Maintenance extends BaseModule
 {
-       public static function content(array $parameters = [])
+       protected function content(array $request = []): string
        {
-               $reason = DI::config()->get('system', 'maintenance_reason');
+               $reason = DI::config()->get('system', 'maintenance_reason') ?? '';
 
                if ((substr(Strings::normaliseLink($reason), 0, 7) === 'http://') ||
                        (substr(Strings::normaliseLink($reason), 0, 8) === 'https://')) {
@@ -45,14 +45,14 @@ class Maintenance extends BaseModule
 
                $exception = new HTTPException\ServiceUnavailableException($reason);
 
-               header($_SERVER["SERVER_PROTOCOL"] . ' ' . $exception->getCode() . ' ' . DI::l10n()->t('System down for maintenance'));
+               header($_SERVER['SERVER_PROTOCOL'] . ' ' . $exception->getCode() . ' ' . DI::l10n()->t('System down for maintenance'));
 
                $tpl = Renderer::getMarkupTemplate('exception.tpl');
 
                return Renderer::replaceMacros($tpl, [
                        '$title' => DI::l10n()->t('System down for maintenance'),
                        '$message' => DI::l10n()->t('This Friendica node is currently in maintenance mode, either automatically because it is self-updating or manually by the node administrator. This condition should be temporary, please come back in a few minutes.'),
-                       '$thrown' => is_site_admin() ? $reason : '',
+                       '$thrown' => $reason,
                        '$stack_trace' => '',
                        '$trace' => '',
                ]);