Use <label> tags

This commit is contained in:
Garvin Hicking
2003-05-29 17:43:19 +00:00
parent e2c3b0d1b9
commit 287368912a
2 changed files with 4 additions and 2 deletions

View File

@@ -16,6 +16,8 @@ $Source$
for Mozilla, IE5/6 allow resizing with a "0" frameborder
* footer.inc.php3: Only update queryframes DB/Table info when
no error happened in a query.
* ldi_table.php3: Use <label> tags for the new radio buttons as with
our other GUI elements.
2003-05-28 Alexander M. Turek <rabus@users.sourceforge.net>
* translators.html: Typo.

View File

@@ -157,8 +157,8 @@ if (PMA_MYSQL_INT_VERSION > 40003) {
<td><?php echo $strLoadMethod; ?>
</td>
<td>
<input type="radio" name="local_option" value="0" <?php echo (!$local_option_selected?' checked="checked" ': '');?>/>...DATA <br />
<input type="radio" name="local_option" value="1" <?php echo ($local_option_selected?' checked="checked" ': '');?>/>...DATA LOCAL
<input type="radio" id="radio_local_option_0" name="local_option" value="0" <?php echo (!$local_option_selected ? ' checked="checked" ' : ''); ?>/><label for="radio_local_option_0">...DATA</label><br />
<input type="radio" id="radio_local_option_1" name="local_option" value="1" <?php echo ($local_option_selected ? ' checked="checked" ' : ''); ?>/><label for="radio_local_option_1">...DATA LOCAL</label>
</td>
<td><?php echo $strLoadExplanation; ?>
</td>