blob: bd7196cdfdfc03107d17b37be85989ea3d546a7b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?php
function system_down() {
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;
}
|