bug #2417058 [properties] Edit fields: losing auto-increment setting

This commit is contained in:
Marc Delisle
2008-12-17 18:49:26 +00:00
parent 87f8a9bfff
commit 3d8f04b0bd
2 changed files with 2 additions and 1 deletions

View File

@@ -13,6 +13,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
+ [lang] Dutch update, thanks to Herman van Rink - helmo
- patch #2407785 [cleanup] ereg*() deprecated in PHP 5.3,
thanks to Alex Frase - atfrase
- bug #2417058 [properties] Edit fields: losing auto-increment setting
3.1.1.0 (2008-12-09)
- patch #2242765 [core] Navi panel server links wrong,

View File

@@ -529,7 +529,7 @@ for ($i = 0; $i < $num_fields; $i++) {
$content_cells[$i][$ci] = '<input name="field_extra[' . $i . ']"'
. ' id="field_' . $i . '_' . ($ci - $ci_offset) . '"';
if (isset($row['Extra']) && $row['Extra'] == 'auto_increment') {
if (isset($row['Extra']) && strtolower($row['Extra']) == 'auto_increment') {
$content_cells[$i][$ci] .= ' checked="checked"';
}