Fixed missing event variable in move_columns dialog Go-button callback

This commit is contained in:
Jo Michael 2012-04-15 01:23:25 +02:00
parent 37ac76c461
commit 315f2f7454

View File

@ -375,7 +375,7 @@ $(document).ready(function() {
*/
var button_options = {};
button_options[PMA_messages['strGo']] = function() {
button_options[PMA_messages['strGo']] = function(event) {
event.preventDefault();
var $msgbox = PMA_ajaxShowMessage();
var $this = $(this);