]> git.mxchange.org Git - friendica.git/blob - mod/maintenance.php
Merge pull request #2323 from annando/1601-dfrn-import
[friendica.git] / mod / maintenance.php
1 <?php
2 if(! function_exists('maintenance_content')) {
3 function maintenance_content(&$a) {
4         return replace_macros(get_markup_template('maintenance.tpl'), array(
5                 '$sysdown' => t('System down for maintenance')
6         ));
7 }
8 }