bug [XHTML] problem with tabindex and radio fields

This commit is contained in:
Marc Delisle
2008-06-14 12:01:58 +00:00
parent cec1847121
commit 2e1f89a67c
2 changed files with 2 additions and 1 deletions

View File

@@ -68,6 +68,7 @@ danbarry
(really causes a problem in case of INSERT/UPDATE)
- bug #1990342 [import] SQL file import very slow on Windows,
thanks to Richard Heaton - wotnot
- bug [XHTML] problem with tabindex and radio fields
2.11.7.0 (not yet released)
- bug #1908719 [interface] New field cannot be auto-increment and primary key

View File

@@ -740,7 +740,7 @@ foreach ($rows as $row_id => $vrow) {
&& $enum_value['plain'] == $field['Default'])) {
echo ' checked="checked"';
}
echo 'tabindex="' . ($tabindex + $tabindex_for_value) . '" />';
echo ' tabindex="' . ($tabindex + $tabindex_for_value) . '" />';
echo '<label for="field_' . $idindex . '_3_' . $j . '">'
. $enum_value['html'] . '</label>' . "\n";
$j++;