2013-01-15 00:48:01 +01:00
|
|
|
<?php
|
2016-02-07 15:11:34 +01:00
|
|
|
|
2013-01-15 00:48:01 +01:00
|
|
|
function maintenance_content(&$a) {
|
2016-10-02 15:52:52 +02:00
|
|
|
header('HTTP/1.1 503 Service Temporarily Unavailable');
|
|
|
|
header('Status: 503 Service Temporarily Unavailable');
|
|
|
|
header('Retry-After: 600');
|
|
|
|
|
2013-01-15 00:48:01 +01:00
|
|
|
return replace_macros(get_markup_template('maintenance.tpl'), array(
|
|
|
|
'$sysdown' => t('System down for maintenance')
|
|
|
|
));
|
|
|
|
}
|