]> git.p6c8.net - jirafeau.git/commitdiff
fix installation bug
authorJerome Jutteau <mojo@couak.net>
Sun, 22 Feb 2015 17:07:50 +0000 (18:07 +0100)
committerJerome Jutteau <mojo@couak.net>
Sun, 22 Feb 2015 17:07:50 +0000 (18:07 +0100)
install.php

index ca626aba3e915eec3703f1081fe9d1a957e8360b..a1eac8dfcbc880b71720d4a7d8b9f97bbad74269 100644 (file)
@@ -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 '<div class="message"><p>' .
              t('Jirafeau is now fully operational') . ':' .
              '<br /><a href="' . $cfg['web_root'] . '">' .

patrick-canterino.de