Merge branch 'QA_4_7'

This commit is contained in:
Madhura Jayaratne 2017-02-07 22:35:21 +05:30
commit 8765588ef5
2 changed files with 2 additions and 1 deletions

View File

@ -61,6 +61,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'

View File

@ -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];