Fix bug#4485 Sorting breaks the copy column feature

Signed-off-by: Atul Pratap Singh <atulpratapsingh05@gmail.com>
This commit is contained in:
Atul Pratap Singh 2014-07-08 17:40:10 +05:30
parent 09e4604125
commit b0a91accd8
2 changed files with 5 additions and 0 deletions

View File

@ -8,6 +8,7 @@ phpMyAdmin - ChangeLog
- bug #4478 Server validation does not work while in setup/mysqli
- bug Undefined variable when grid editing a foreign key column
- bug #4481 mult_submits.inc.php Undefined variable Error
- bug #4485 Sorting breaks the copy column feature
4.2.5.0 (2014-06-26)
- bug #4467 shell_exec() has been disabled for security reasons

View File

@ -1506,6 +1506,10 @@ function PMA_makegrid(t, enableResize, enableReorder, enableVisib, enableGridEdi
})
.find("input").focus().select();
});
$(t).find('th.draggable a')
.dblclick(function (e) {
e.stopPropagation();
});
// restore column order when the restore button is clicked
$('div.restore_column').click(function () {
g.restoreColOrder();