This commit is contained in:
2020-12-01 17:23:13 -03:00
parent 09e8c226bb
commit 9852a8cbdc
274 changed files with 24706 additions and 0 deletions

View File

@ -0,0 +1,20 @@
<?php
include_once dirname(dirname(__DIR__)) . '/bootstrap/autoload.php';
sanitize();
$steps = [
'create_user_base',
'log_locations',
'create_guest',
'create_admin',
'end_install'
];
if (get('step') == null) {
$next = $steps[0];
} else {
$next = $steps[array_search(get('step'), $steps) + 1];
}
header('Location: ' . $next . '.php');
?>