This commit is contained in:
Pek5892 2022-07-15 11:15:24 +02:00
commit 4a3c646bf8
1 changed files with 3 additions and 1 deletions

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>';