8 lines
159 B
PHP
8 lines
159 B
PHP
<?php
|
|
require_once "globals.php";
|
|
|
|
// check MAINTENANCE file
|
|
if (file_exists(MAINTENANCE_FLAG_FILE)) {
|
|
header("Location: maintenance.html");
|
|
exit(0);
|
|
} |