2013-01-15 00:48:01 +01:00
|
|
|
<?php
|
2016-02-05 21:52:39 +01:00
|
|
|
if(! function_exists('maintenance_content')) {
|
2013-01-15 00:48:01 +01:00
|
|
|
function maintenance_content(&$a) {
|
|
|
|
return replace_macros(get_markup_template('maintenance.tpl'), array(
|
|
|
|
'$sysdown' => t('System down for maintenance')
|
|
|
|
));
|
|
|
|
}
|
2016-02-05 21:52:39 +01:00
|
|
|
}
|