mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-27 07:44:35 +02:00
#13035 refactored password_hash
This commit is contained in:
parent
4391c6370d
commit
ffd46403b2
@ -2738,7 +2738,13 @@ function menuTabsShowHide() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function redirectNode(url, target = "_blank") {
|
function redirectNode(url, target = "_blank") {
|
||||||
event.preventDefault();
|
if (
|
||||||
|
typeof event !== "undefined" &&
|
||||||
|
typeof event.preventDefault === "function"
|
||||||
|
) {
|
||||||
|
event.preventDefault();
|
||||||
|
}
|
||||||
|
|
||||||
$.ajax({
|
$.ajax({
|
||||||
method: "POST",
|
method: "POST",
|
||||||
url: "ajax.php",
|
url: "ajax.php",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user