Update installer

This commit is contained in:
Mike Koch 2017-12-06 12:52:02 -05:00
parent f35fb7b207
commit 95342815e2
No known key found for this signature in database
GPG Key ID: 9BA5D7F8391455ED
2 changed files with 2 additions and 1 deletions

View File

@ -100,7 +100,7 @@ if (HESK_NEW_VERSION != $hesk_settings['hesk_version']) {
</div>
<?php if ($installMismatch): ?>
<div class="text-center">
<h4>You need to be running HESK 2.7.3 to install Mods for HESK. You currently have HESK <?php echo $hesk_settings['hesk_version']; ?>.</h4>
<h4>You need to be running HESK <?php echo HESK_NEW_VERSION; ?> to install Mods for HESK. You currently have HESK <?php echo $hesk_settings['hesk_version']; ?>.</h4>
</div>
<?php else: // BEGIN INSTALL SCREENS ?>
<div data-step="intro" class="login-box-msg">

View File

@ -218,5 +218,6 @@ function getAllMigrations() {
161 => new UpdateMigration('3.2.2', '3.2.1', 161),
162 => new UpdateMigration('3.2.3', '3.2.2', 162),
163 => new UpdateMigration('3.2.4', '3.2.3', 163),
164 => new UpdateMigration('3.2.5', '3.2.4', 164),
);
}