Delete stale unreferenced ban appeals via foreign key constrain

This commit is contained in:
Zankaria
2024-07-14 00:25:52 +02:00
committed by Zankaria
parent 00cc1f434d
commit e4707ee2a8
2 changed files with 2 additions and 5 deletions

View File

@@ -1044,10 +1044,6 @@ function mod_ban_appeals() {
if (!hasPermission($config['mod']['view_ban_appeals']))
error($config['error']['noaccess']);
// Remove stale ban appeals
query("DELETE FROM ``ban_appeals`` WHERE NOT EXISTS (SELECT 1 FROM ``bans`` WHERE `ban_id` = ``bans``.`id`)")
or error(db_error());
if (isset($_POST['appeal_id']) && (isset($_POST['unban']) || isset($_POST['deny']))) {
if (!hasPermission($config['mod']['ban_appeals']))
error($config['error']['noaccess']);