Skip to content
Snippets Groups Projects
Commit 65d427de authored by Giovannoni Laurent's avatar Giovannoni Laurent
Browse files

evo: add test if install dir exists

parent 33b27be7
No related branches found
No related tags found
No related merge requests found
...@@ -36,7 +36,7 @@ $core = new core_tools(); ...@@ -36,7 +36,7 @@ $core = new core_tools();
$_SESSION['custom_override_id'] = $core->get_custom_id(); $_SESSION['custom_override_id'] = $core->get_custom_id();
/**** retrieve HTTP_REQUEST FROM SSO ****/ /**** retrieve HTTP_REQUEST FROM SSO ****/
$_SESSION['HTTP_REQUEST'] = $_REQUEST; $_SESSION['HTTP_REQUEST'] = $_REQUEST;
if (!file_exists('installed.lck')) { if (!file_exists('installed.lck') && is_dir('install')) {
header('location: install/index.php'); header('location: install/index.php');
exit; exit;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment