Skip to content

Commit

Permalink
Fix #12966 After adding a column ADD INDEX option won't be displayed …
Browse files Browse the repository at this point in the history
…when enabling AI

Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
  • Loading branch information
madhuracj committed Feb 7, 2017
1 parent 63db3da commit 99e4e0d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions ChangeLog
Expand Up @@ -58,6 +58,7 @@ phpMyAdmin - ChangeLog
- issue #12955 Fixed database renaming
- issue #12954 Fixed export of tracking data
- issue #12960 Enclose exports in transaction by default
- issue #12966 After adding a column ADD INDEX option won't be displayed when enabling AI

4.6.6 (2017-01-23)
- issue #12759 Fix Notice regarding 'Undefined index: old_usergroup'
Expand Down
2 changes: 1 addition & 1 deletion js/functions.js
Expand Up @@ -2998,7 +2998,7 @@ AJAX.registerOnload('functions.js', function () {
}
});

$("input[value=AUTO_INCREMENT]").change(function(){
$(document).on('change', "input[value=AUTO_INCREMENT]", function() {
if (this.checked) {
var col = /\d/.exec($(this).attr('name'));
col = col[0];
Expand Down

0 comments on commit 99e4e0d

Please sign in to comment.