]> git.mxchange.org Git - friendica.git/blobdiff - mod/maintenance.php
Diaspora: Fix class name case + add self
[friendica.git] / mod / maintenance.php
index 02de29108f892fb3ea85c4b9b3c2b1206af97969..3d21ce40b759d6b28e7b51e8396daf9bcc91aee6 100644 (file)
@@ -1,8 +1,11 @@
 <?php
-if(! function_exists('maintenance_content')) {
+
 function maintenance_content(&$a) {
+       header('HTTP/1.1 503 Service Temporarily Unavailable');
+       header('Status: 503 Service Temporarily Unavailable');
+       header('Retry-After: 600');
+
        return replace_macros(get_markup_template('maintenance.tpl'), array(
                '$sysdown' => t('System down for maintenance')
        ));
 }
-}