diff options
author | Dawid Opis <ncore@ncore.com.pl> | 2011-08-11 19:50:35 +0200 |
---|---|---|
committer | Dawid Opis <ncore@ncore.com.pl> | 2011-08-11 19:50:44 +0200 |
commit | 8aac43c12b409ebfa53ca74aea1f2091cba348ea (patch) | |
tree | 56cc7d27e22234ccd61760b905a1b9279149f473 /core/templates | |
parent | 99790d68058b56e4a1faa0bba401287e5aa9eab1 (diff) | |
download | nextcloud-server-8aac43c12b409ebfa53ca74aea1f2091cba348ea.tar.gz nextcloud-server-8aac43c12b409ebfa53ca74aea1f2091cba348ea.zip |
fixed width for three database type buttons, more highlighted when selected
Diffstat (limited to 'core/templates')
-rw-r--r-- | core/templates/installation.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/templates/installation.php b/core/templates/installation.php index c10e66ae2f5..4371c4b17b1 100644 --- a/core/templates/installation.php +++ b/core/templates/installation.php @@ -53,7 +53,8 @@ <p><?php echo $l->t( 'PostgreSQL will be used.' ); ?></p> <input type="hidden" id="dbtype" name="dbtype" value="pgsql" /> <?php else: ?> - <p><label class="pgsql" for="pgsql">PostgreSQL</label><input type="radio" name="dbtype" value='pgsql' id="pgsql" <?php OC_Helper::init_radio('dbtype','pgsql', 'mysql', 'sqlite'); ?>/></p> + <label class="pgsql" for="pgsql">PostgreSQL</label> + <input type="radio" name="dbtype" value='pgsql' id="pgsql" <?php OC_Helper::init_radio('dbtype','pgsql', 'mysql', 'sqlite'); ?>/> <?php endif; ?> <?php endif; ?> </div> |