summaryrefslogtreecommitdiffstats
path: root/core/templates/installation.php
diff options
context:
space:
mode:
authorMorris Jobke <morris.jobke@gmail.com>2014-02-01 15:02:36 +0100
committerMorris Jobke <morris.jobke@gmail.com>2014-02-01 15:02:36 +0100
commit5844d682a74533be8577160860758709bef706ba (patch)
tree10b039d860cad77d2ad72a76b028404cf7fd10d7 /core/templates/installation.php
parentf1c60c7f8b12180917828775fcf4ba82ba68d573 (diff)
downloadnextcloud-server-5844d682a74533be8577160860758709bef706ba.tar.gz
nextcloud-server-5844d682a74533be8577160860758709bef706ba.zip
Use === instead of ==, add missing whitespace and CSS class
Diffstat (limited to 'core/templates/installation.php')
-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) ?>"