From c433dbb268ebc425aded961b6e854900d5b4928e Mon Sep 17 00:00:00 2001 From: jakubvrana Date: Thu, 17 Jan 2008 10:21:36 +0000 Subject: [PATCH] Uncheck auto_increment for added row in IE git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@368 7c3ca157-0c34-0410-bff1-cbf682f78f5c --- design.inc.php | 2 +- editing.inc.php | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/design.inc.php b/design.inc.php index 866cc392..9eaa50e6 100644 --- a/design.inc.php +++ b/design.inc.php @@ -9,7 +9,7 @@ function page_header($title, $breadcrumb = array(), $title2 = "") { -<?php echo $title . (strlen($title2) ? ": " . htmlspecialchars($title2) : "") . " - " . lang('phpMinAdmin') . " 1.5.0-dev"; ?> +<?php echo $title . (strlen($title2) ? ": " . htmlspecialchars($title2) : "") . " - " . lang('phpMinAdmin') . " 1.5.1-dev"; ?> diff --git a/editing.inc.php b/editing.inc.php index 7987c731..7b2c4c98 100644 --- a/editing.inc.php +++ b/editing.inc.php @@ -139,6 +139,7 @@ function add_row(button) { for (var i=0; i < tags.length; i++) { if (tags[i].name == 'auto_increment_col') { tags[i].value = x; + tags[i].checked = false; } tags[i].name = tags[i].name.replace(/([0-9.]+)/, x); if (/\[(orig|field|comment)/.test(tags[i].name)) {