aboutsummaryrefslogtreecommitdiff
path: root/app/install.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/install.php')
-rw-r--r--app/install.php7
1 files changed, 5 insertions, 2 deletions
diff --git a/app/install.php b/app/install.php
index b7b309e1a..5a4f3359a 100644
--- a/app/install.php
+++ b/app/install.php
@@ -611,7 +611,10 @@ function printStep4() {
function printStep5() {
?>
- <p class="alert alert-error"><span class="alert-head"><?= _t('gen.short.damn') ?></span> <?= _t('install.not_deleted', DATA_PATH . '/do-install.txt') ?></p>
+ <p class="alert alert-error">
+ <span class="alert-head"><?= _t('gen.short.damn') ?></span>
+ <?= _t('install.missing_applied_migrations', DATA_PATH . '/applied_migrations.txt') ?>
+ </p>
<?php
}
@@ -636,7 +639,7 @@ case 3:
case 4:
break;
case 5:
- if (setupMigrations() && deleteInstall()) {
+ if (setupMigrations()) {
header('Location: index.php');
}
break;