X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FModule%2FMaintenance.php;h=4080869158942a006b92404e1bfc834a94837d36;hb=40777d08c198ed5f435a7b029e25ea139de62c16;hp=36deee83d339c783f3f95262b2190304eac1527c;hpb=064ff693fd310e5013aeadee4ed3a1c421095d93;p=friendica.git diff --git a/src/Module/Maintenance.php b/src/Module/Maintenance.php index 36deee83d3..4080869158 100644 --- a/src/Module/Maintenance.php +++ b/src/Module/Maintenance.php @@ -1,6 +1,6 @@ get('system', 'maintenance_reason'); @@ -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' => '', ]);