diff options
author | Jan-Christoph Borchardt <JanCBorchardt@fsfe.org> | 2011-04-17 18:00:10 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <JanCBorchardt@fsfe.org> | 2011-04-17 18:00:10 +0200 |
commit | 8dcfd0ee8abc72d5446fb9520c52328ba6cb663a (patch) | |
tree | 86266974cfff0983475fd4ff1f0d6836e4d17cd1 /templates | |
parent | 023c1b2f19ecb3fe1f7ccbda57e73dd476c249e2 (diff) | |
download | nextcloud-server-8dcfd0ee8abc72d5446fb9520c52328ba6cb663a.tar.gz nextcloud-server-8dcfd0ee8abc72d5446fb9520c52328ba6cb663a.zip |
CSS width bugfix & beautiful radio buttons for installation
Diffstat (limited to 'templates')
-rw-r--r-- | templates/installation.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/installation.php b/templates/installation.php index cfbe53813e0..73b9a67743f 100644 --- a/templates/installation.php +++ b/templates/installation.php @@ -19,8 +19,8 @@ <div id="advanced_options"> <label class="left">Data directory</label><input type="text" name="directory" value="<?php echo($_['datadir']);?>" /> <?php if($_['hasMySQL'] and $_['hasSQLite']): ?> - <input type="radio" name="dbtype" value='sqlite' id="sqlite" checked="checked" /><label for="sqlite">SQLite</label> - <input type="radio" name="dbtype" value='mysql' id="mysql"><label for="mysql">MySQL</label> + <input type="radio" name="dbtype" value='sqlite' id="sqlite" checked="checked" /><label class="sqlite" for="sqlite">SQLite</label> + <input type="radio" name="dbtype" value='mysql' id="mysql"><label class="mysql" for="mysql">MySQL</label> <div id="use_mysql"> <input type="text" name="dbuser" value="MySQL user" /> <input type="password" name="dbpass" value="password" /> @@ -33,7 +33,7 @@ <input type='hidden' name='dbtype' value='sqlite'/> <?php endif;?> <?php if($_['hasMySQL'] and $_['hasSQLite']): ?> - <label class="left">Host</label><input type="text" name="dbhost" value="localhost" /> + <label class="left">Database host</label><input type="text" name="dbhost" value="localhost" /> <label class="left">Table prefix</label><input type="text" name="dbtableprefix" value="oc_" /> </div> <?php endif;?> |