Merge branch 'QA_4_1'
This commit is contained in:
commit
c6e8c3bbb3
@ -40,6 +40,7 @@ phpMyAdmin - ChangeLog
|
||||
4.1.10.0 (not yet released)
|
||||
- bug #4301 Grid edit: "SELECT" query is replaced by "UPDATE" query after edit
|
||||
- bug #4278 reCaptcha re-login requires double effort
|
||||
- bug #4324 Datepicker not showing up on insert page
|
||||
|
||||
4.1.9.0 (2014-03-06)
|
||||
- bug #4279 CTRL + up or down moves two fields (part one)
|
||||
|
||||
@ -491,10 +491,6 @@ AJAX.registerOnload('tbl_change.js', function () {
|
||||
tabindex++;
|
||||
$(this).attr('tabindex', tabindex);
|
||||
});
|
||||
// Add all the required datepickers back
|
||||
$('input.datefield, input.datetimefield').each(function () {
|
||||
PMA_addDatepicker($(this));
|
||||
});
|
||||
} else if (curr_rows > target_rows) {
|
||||
while (curr_rows > target_rows) {
|
||||
$("input[id^=insert_ignore]:last")
|
||||
@ -505,6 +501,8 @@ AJAX.registerOnload('tbl_change.js', function () {
|
||||
}
|
||||
}
|
||||
});
|
||||
// Add all the required datepickers back
|
||||
addDateTimePicker();
|
||||
});
|
||||
|
||||
function changeValueFieldType(elem, searchIndex)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user