diff --git a/www/js/my.full.js b/www/js/my.full.js index e35798d130..282b38208f 100644 --- a/www/js/my.full.js +++ b/www/js/my.full.js @@ -460,7 +460,15 @@ function setForm() */ function setFormAction(actionLink, hiddenwin) { - // if(hiddenwin) $('form').attr('target', hiddenwin); + if(hiddenwin) + { + $('form').attr('target', hiddenwin); + } + else + { + $('form').removeAttr('target'); + } + $('form').attr('action', actionLink).submit(); }