This commit is contained in:
Aevann1 2021-10-16 11:55:39 +02:00
parent 5a52b9709b
commit 3547578a08
9 changed files with 9 additions and 7 deletions

View file

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