X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FModule%2FMaintenance.php;h=67f65b8e3962fbdc5392b653918e6230ba7d60ce;hb=39a5bfc0c0ea3777b63adb57a7d6cb4b40a70e86;hp=2025a5fa4d121543f28392b617bad356cbb6d07a;hpb=4208535c16f0e8196effe230cc34141551a7be18;p=friendica.git diff --git a/src/Module/Maintenance.php b/src/Module/Maintenance.php index 2025a5fa4d..67f65b8e39 100644 --- a/src/Module/Maintenance.php +++ b/src/Module/Maintenance.php @@ -1,6 +1,6 @@ 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,7 +45,7 @@ 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');