This commit is contained in:
Aevann1 2022-02-24 14:03:28 +02:00
parent 2777f0dce3
commit 209938d284
54 changed files with 375 additions and 320 deletions

View file

@ -4,7 +4,7 @@ function post(url) {
xhr.setRequestHeader('xhr', 'xhr');
var form = new FormData()
form.append("formkey", formkey());
xhr.onload = function() {location.reload(true);};
xhr.onload = function() {location.reload();};
xhr.send(form);
};