From 3604041e53db6c82e175f0fb3b69414d147de8a2 Mon Sep 17 00:00:00 2001 From: Jerome Jutteau Date: Sun, 22 Feb 2015 18:07:50 +0100 Subject: [PATCH 1/1] fix installation bug --- install.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/install.php b/install.php index ca626ab..a1eac8d 100644 --- a/install.php +++ b/install.php @@ -171,7 +171,6 @@ if (isset ($_POST['step']) && isset ($_POST['next'])) case 3: $cfg['web_root'] = jirafeau_add_ending_slash ($_POST['web_root']); $cfg['var_root'] = jirafeau_add_ending_slash ($_POST['var_root']); - $cfg['installation_done'] = true; jirafeau_export_cfg ($cfg); break; @@ -357,6 +356,8 @@ case 4: } else { + $cfg['installation_done'] = true; + jirafeau_export_cfg ($cfg); echo '

' . t('Jirafeau is now fully operational') . ':' . '
' . -- 2.34.1