X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FModule%2FMaintenance.php;h=67f65b8e3962fbdc5392b653918e6230ba7d60ce;hb=8b02c285472ea28002cf9c8924e2885dd207ccd8;hp=ece9cea13390f92e027ad4c5b8e151aa3e4911d3;hpb=aa0b485f3dca72c5448076e913fa54d948cd7731;p=friendica.git diff --git a/src/Module/Maintenance.php b/src/Module/Maintenance.php index ece9cea133..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://')) { @@ -43,7 +44,17 @@ class Maintenance extends BaseModule } $exception = new HTTPException\ServiceUnavailableException($reason); - $exception->httpdesc = DI::l10n()->t('System down for maintenance'); - throw $exception; + + 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' => $reason, + '$stack_trace' => '', + '$trace' => '', + ]); } }