bug #1184325, Label IDs mismatch for ENUM type

This commit is contained in:
Marc Delisle
2005-05-29 14:12:01 +00:00
parent 93d3cc5579
commit cefc8b573b
2 changed files with 5 additions and 1 deletions

View File

@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
$Id$ $Id$
$Source$ $Source$
2005-05-29 Marc Delisle <lem9@users.sourceforge.net>
* tbl_change.php: bug #1184325, Label IDs mismatch for ENUM type,
thanks to Ryan Schmidt
2005-05-27 Marc Delisle <lem9@users.sourceforge.net> 2005-05-27 Marc Delisle <lem9@users.sourceforge.net>
* tbl_properties.inc.php: bug #1205940, current timestamp checkbox * tbl_properties.inc.php: bug #1205940, current timestamp checkbox
when field type changes when field type changes

View File

@@ -631,7 +631,7 @@ foreach ($loop_array AS $vrowcount => $vrow) {
echo ' checked="checked"'; echo ' checked="checked"';
} }
echo 'tabindex="' . ($tabindex + $tabindex_for_value) . '" />'; echo 'tabindex="' . ($tabindex + $tabindex_for_value) . '" />';
echo '<label for="field_' . ($tabindex + $tabindex_for_value) . '_3_' . $j . '">' . htmlspecialchars($enum_atom) . '</label>' . "\n"; echo '<label for="field_' . $idindex . '_3_' . $j . '">' . htmlspecialchars($enum_atom) . '</label>' . "\n";
} // end for } // end for
} // end else } // end else