added labels for checkboxes

This commit is contained in:
Alexander M. Turek
2002-05-19 21:52:19 +00:00
parent ae924d8c7d
commit b7af461d0e
2 changed files with 4 additions and 3 deletions

View File

@@ -11,6 +11,7 @@ $Source$
- Better translation.
* lang/albanian.inc.php3, libraries/select_lang.lib.php3:
New translation, thanks to Laurent Dhima <laurenti@users.sourceforge.net>.
* ldi_table.php3: Added labels for checkboxes.
2002-05-18 Marc Delisle <lem9@users.sourceforge.net>
* pdf_schema.php3: corrections by Lo<4C>c; and I fix the undefined variables

View File

@@ -28,8 +28,8 @@ require('./tbl_properties_table_info.php3');
</tr>
<tr>
<td><?php echo $strReplaceTable; ?></td>
<td><input type="checkbox" name="replace" value="REPLACE" /><?php echo $strReplace; ?></td>
<td><?php echo $strTheContents; ?></td>
<td><input type="checkbox" name="replace" value="REPLACE" id="checkbox_replace" /><?php echo $strReplace; ?></td>
<td><label for="checkbox_replace"><?php echo $strTheContents; ?></label></td>
</tr>
<tr>
<td><?php echo $strFieldsTerminatedBy; ?></td>
@@ -40,7 +40,7 @@ require('./tbl_properties_table_info.php3');
<td><?php echo $strFieldsEnclosedBy; ?></td>
<td>
<input type="text" name="enclosed" size="1" maxlength="1" value="&quot;" />
<input type="checkbox" name="enclose_option" value="OPTIONALLY" /><?php echo $strOptionally . "\n"; ?>
<input type="checkbox" name="enclose_option" value="OPTIONALLY" id="checkbox_enclose_option" /><label for="checkbox_enclose_option"><?php echo $strOptionally . "\n"; ?></label>
</td>
<td><?php echo $strOftenQuotation; ?></td>
</tr>