summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--core/templates/installation.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/templates/installation.php b/core/templates/installation.php
index 9356e62aa6c..9670a5e9ee5 100644
--- a/core/templates/installation.php
+++ b/core/templates/installation.php
@@ -87,8 +87,8 @@
<legend><?php p($l->t( 'Configure the database' )); ?></legend>
<div id="selectDbType">
<?php foreach($_['databases'] as $type => $label): ?>
- <?php if(count($_['databases']) == 1): ?>
- <p><?php p($label . $l->t( 'will be used' )); ?>.</p>
+ <?php if(count($_['databases']) === 1): ?>
+ <p class="info"><?php p($label . ' ' . $l->t( 'will be used' )); ?>.</p>
<input type="hidden" id="dbtype" name="dbtype" value="<?php p($type) ?>" />
<?php else: ?>
<input type="radio" name="dbtype" value="<?php p($type) ?>" id="<?php p($type) ?>"