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