Merge branch 'QA_4_1'

This commit is contained in:
Atul Pratap Singh 2014-03-13 00:48:26 +05:30
commit c6e8c3bbb3
2 changed files with 3 additions and 4 deletions

View File

@ -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)

View File

@ -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)