Merge branch 'QA_4_7'

This commit is contained in:
Madhura Jayaratne 2017-05-17 23:43:32 +10:00
commit ea5640fd9c
2 changed files with 3 additions and 1 deletions

View File

@ -39,6 +39,7 @@ phpMyAdmin - ChangeLog
- issue #13241 Redirect user to last page that has any tables to display
- issue #13266 Fix link to User accounts overview page
- issue #13274 Fix error in query builder
- issue #13177 Grid editing repeats action after error
4.7.0 (2017-03-28)
- patch #12233 [Display] Improve message when renaming database to same name

View File

@ -2079,7 +2079,8 @@ function PMA_makegrid(t, enableResize, enableReorder, enableVisib, enableGridEdi
// hide edit cell if the click is not fromDat edit area
if ($(e.target).parents().index($(g.cEdit)) == -1 &&
!$(e.target).parents('.ui-datepicker-header').length &&
!$('.browse_foreign_modal.ui-dialog:visible').length
!$('.browse_foreign_modal.ui-dialog:visible').length &&
!$(e.target).hasClass('error')
) {
g.hideEditCell();
}