mirror of
https://github.com/itflow-org/itflow
synced 2026-02-28 10:54:52 +00:00
12 lines
192 B
PHP
12 lines
192 B
PHP
<?php
|
|
|
|
if (file_exists("config.php")) {
|
|
//require_once "includes/check_login.php";
|
|
|
|
header("Location: /user/$config_start_page");
|
|
|
|
} else {
|
|
header("Location: /setup");
|
|
exit();
|
|
}
|