Add rolling token into confirm url

This commit is contained in:
Laurent Destailleur 2018-12-22 17:34:57 +01:00
parent 3fee4c3309
commit 91f63f025b

View File

@ -4002,6 +4002,7 @@ class Form
var inputvalue = $("#" + inputname + more).val();
if (typeof inputvalue == "undefined") { inputvalue=""; }
options += "&" + inputname + "=" + encodeURIComponent(inputvalue);
options += "&token=" + encodeURIComponent('.$_SESSION['newtoken'].')
});
}
var urljump = pageyes + (pageyes.indexOf("?") < 0 ? "?" : "") + options;