mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-08 00:04:27 +02:00
7 lines
169 B
PHP
7 lines
169 B
PHP
<?php
|
|
|
|
function maintenance_content(&$a) {
|
|
return replace_macros(get_markup_template('maintenance.tpl'), array(
|
|
'$sysdown' => t('System down for maintenance')
|
|
));
|
|
}
|