Commit 722cca6bba7afec1a02faa54f4dea5e763fa3984
1 parent
dffad70a
Fixed incorrect messages about whether a backup was performed during the current…
… upgrade session (was flipped) Committed by: Paul Barrett
Showing
1 changed file
with
2 additions
and
4 deletions
setup/upgrade/templates/database.tpl
| ... | ... | @@ -20,13 +20,11 @@ |
| 20 | 20 | <?php echo $upgradeTable; ?> |
| 21 | 21 | <?php } |
| 22 | 22 | else if ($action == 'confirm') { |
| 23 | - if (!$backupStatus) { ?> | |
| 23 | + if ($backupStatus) { ?> | |
| 24 | 24 | <p>We are about to start the upgrade process.<P> |
| 25 | 25 | <?php } |
| 26 | 26 | else { ?> |
| 27 | - <br/> | |
| 28 | - <font color="Red">Please ensure that you have made a backup before continuing with the upgrade process.</font> | |
| 29 | - <p> | |
| 27 | + <p><font color="Red">Please ensure that you have made a backup before continuing with the upgrade process.</font><p> | |
| 30 | 28 | <?php } ?> |
| 31 | 29 | <?php } |
| 32 | 30 | else if ($action == 'runUpgrade') { | ... | ... |