1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2024-12-28 00:30:45 +01:00

Fix bulk con blank attivo

This commit is contained in:
MatteoPistorello 2022-07-15 10:39:29 +02:00
parent fbc043feb7
commit aa446d0e84

View File

@ -317,7 +317,9 @@ function redirect(href, data, method, blank) {
var text = '<form action="' + href + window.location.hash + '" method="post"' + (blank ? ' target="_blank"' : '') + '>';
for (var name in data) {
text += '<input type="hidden" name="' + name + '" value="' + data[name] + '"/>';
if (name != 'msg') {
text += '<input type="hidden" name="' + name + '" value="' + data[name] + '"/>';
}
}
text += '</form>';