Use === instead of ==, add missing whitespace and CSS class
This commit is contained in:
parent
f1c60c7f8b
commit
5844d682a7
|
@ -87,8 +87,8 @@
|
||||||
<legend><?php p($l->t( 'Configure the database' )); ?></legend>
|
<legend><?php p($l->t( 'Configure the database' )); ?></legend>
|
||||||
<div id="selectDbType">
|
<div id="selectDbType">
|
||||||
<?php foreach($_['databases'] as $type => $label): ?>
|
<?php foreach($_['databases'] as $type => $label): ?>
|
||||||
<?php if(count($_['databases']) == 1): ?>
|
<?php if(count($_['databases']) === 1): ?>
|
||||||
<p><?php p($label . $l->t( 'will be used' )); ?>.</p>
|
<p class="info"><?php p($label . ' ' . $l->t( 'will be used' )); ?>.</p>
|
||||||
<input type="hidden" id="dbtype" name="dbtype" value="<?php p($type) ?>" />
|
<input type="hidden" id="dbtype" name="dbtype" value="<?php p($type) ?>" />
|
||||||
<?php else: ?>
|
<?php else: ?>
|
||||||
<input type="radio" name="dbtype" value="<?php p($type) ?>" id="<?php p($type) ?>"
|
<input type="radio" name="dbtype" value="<?php p($type) ?>" id="<?php p($type) ?>"
|
||||||
|
|
Loading…
Reference in New Issue