Commit 722cca6bba7afec1a02faa54f4dea5e763fa3984

Authored by Paul Barrett
1 parent dffad70a

Fixed incorrect messages about whether a backup was performed during the current…

… upgrade session (was flipped)

Committed by: Paul Barrett
setup/upgrade/templates/database.tpl
@@ -20,13 +20,11 @@ @@ -20,13 +20,11 @@
20 <?php echo $upgradeTable; ?> 20 <?php echo $upgradeTable; ?>
21 <?php } 21 <?php }
22 else if ($action == 'confirm') { 22 else if ($action == 'confirm') {
23 - if (!$backupStatus) { ?> 23 + if ($backupStatus) { ?>
24 <p>We are about to start the upgrade process.<P> 24 <p>We are about to start the upgrade process.<P>
25 <?php } 25 <?php }
26 else { ?> 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 <?php } ?> 28 <?php } ?>
31 <?php } 29 <?php }
32 else if ($action == 'runUpgrade') { 30 else if ($action == 'runUpgrade') {