From 2e1f89a67cdbe644055d27c653076b7dfd6b5a10 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Sat, 14 Jun 2008 12:01:58 +0000 Subject: [PATCH] bug [XHTML] problem with tabindex and radio fields --- ChangeLog | 1 + tbl_change.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 240ad8a5b..2f8d95547 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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 diff --git a/tbl_change.php b/tbl_change.php index 77677c3a1..90064f4e2 100644 --- a/tbl_change.php +++ b/tbl_change.php @@ -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 '' . "\n"; $j++;