SpreadQuiz/check_maintenance.php
Epagris e313923ad4 - checking maintenance in each file added
- a few CLI commands added
- ticking and concluding expired tests added
2024-09-26 11:34:02 +02:00

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);
}