Added labels for the "Other options" inputs

This commit is contained in:
Marcos García de La Fuente 2014-05-03 12:19:18 +02:00
parent 6482c51858
commit 077dfab7a6

View File

@ -151,11 +151,11 @@ foreach ($list as $key)
// Param
$libelle = $langs->trans($key);
print '<td>'.$libelle.'</td>';
print '<td><label for="'.$key.'">'.$libelle.'</label></td>';
// Value
print '<td>';
print '<input type="text" size="20" name="'.$key.'" value="'.$conf->global->$key.'">';
print '<input type="text" size="20" id="'.$key.'" name="'.$key.'" value="'.$conf->global->$key.'">';
print '</td></tr>';
}