#13035 refactored password_hash

This commit is contained in:
Daniel Cebrian 2024-04-11 18:29:36 +02:00
parent 4391c6370d
commit ffd46403b2
1 changed files with 7 additions and 1 deletions

View File

@ -2738,7 +2738,13 @@ function menuTabsShowHide() {
}
function redirectNode(url, target = "_blank") {
event.preventDefault();
if (
typeof event !== "undefined" &&
typeof event.preventDefault === "function"
) {
event.preventDefault();
}
$.ajax({
method: "POST",
url: "ajax.php",