bug [XHTML] problem with tabindex and radio fields

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

View File

@@ -12,6 +12,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
(really causes a problem in case of INSERT/UPDATE) (really causes a problem in case of INSERT/UPDATE)
- bug #1990342 [import] SQL file import very slow on Windows, - bug #1990342 [import] SQL file import very slow on Windows,
thanks to Richard Heaton - wotnot thanks to Richard Heaton - wotnot
- bug [XHTML] problem with tabindex and radio fields
2.11.7.0 (not yet released) 2.11.7.0 (not yet released)
- bug #1908719 [interface] New field cannot be auto-increment and primary key - bug #1908719 [interface] New field cannot be auto-increment and primary key

View File

@@ -735,7 +735,7 @@ foreach ($loop_array as $vrowcount => $vrow) {
&& isset($row_table_def['Default']) && $enum_atom == $row_table_def['Default'])) { && isset($row_table_def['Default']) && $enum_atom == $row_table_def['Default'])) {
echo ' checked="checked"'; echo ' checked="checked"';
} }
echo 'tabindex="' . ($tabindex + $tabindex_for_value) . '" />'; echo ' tabindex="' . ($tabindex + $tabindex_for_value) . '" />';
echo '<label for="field_' . $idindex . '_3_' . $j . '">' echo '<label for="field_' . $idindex . '_3_' . $j . '">'
. htmlspecialchars($enum_atom) . '</label>' . "\n"; . htmlspecialchars($enum_atom) . '</label>' . "\n";
} // end for } // end for