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