#12893 redirection confirm delete group

This commit is contained in:
Jonathan 2024-04-02 16:55:17 +02:00
parent a35749314d
commit 439dc6d273
1 changed files with 5 additions and 1 deletions

View File

@ -1344,7 +1344,11 @@ $tab = 'group_edition';
}
});
} else {
if (!confirm(confirm_text)) return false;
if (!confirm(confirm_text)) {
return false;
} else {
window.location.assign(delete_URL);
}
}
},
dataType: "json"