Do not allow access to tools/ folder after install

This commit is contained in:
slawkens
2025-05-29 11:27:32 +02:00
parent 149e10261b
commit fcfe5b0dbd
5 changed files with 17 additions and 14 deletions

View File

@@ -139,14 +139,5 @@ else {
}
$_SESSION['installed'] = true;
}
foreach($_SESSION as $key => $value) {
if(strpos($key, 'var_') !== false)
unset($_SESSION[$key]);
}
unset($_SESSION['saved']);
if(file_exists(CACHE . 'install.txt')) {
unlink(CACHE . 'install.txt');
}
}
}