aboutsummaryrefslogtreecommitdiffstats
path: root/include/system_unavailable.php
blob: 4e0e6717b9e1346fcb496cef28c4557de8dac5ca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php /** @file */

require_once("include/network.php");

function system_down() {
http_status(503, 'Service Unavailable');
echo <<< EOT
<html>
<head><title>System Unavailable</title></head>
<body>
Apologies but this site is unavailable at the moment. Please try again later.
</body>
</html>
EOT;
}