Fix bug where delete was not working on ban page

- it was only working on the ban&delete page
This commit is contained in:
towards-a-new-leftypol 2024-01-27 19:13:42 -05:00
parent b3effdf422
commit 7a7cd1ab28
1 changed files with 1 additions and 4 deletions

View File

@ -1809,11 +1809,10 @@ function mod_ban_post(string $board, $delete, $post_num, $token = false) {
}
$will_ban = true;
$will_delete = true;
$will_delete = isset($_POST['delete']) && (int) $_POST['delete'];
$will_spamnoticer = isset($_POST['spamnoticer']);
require_once 'inc/spamnoticer.php';
require_once 'inc/anti-bot.php';
if ($will_spamnoticer) {
$spamnoticer_info = parse_spamnoticer_content_fields($_POST, $po);
@ -1837,8 +1836,6 @@ function mod_ban_post(string $board, $delete, $post_num, $token = false) {
$_POST['length'],
$_POST['board']);
$will_delete = $will_delete && isset($_POST['delete']) && (int) $_POST['delete'];
$has_public_message = isset($_POST['public_message'], $_POST['message']);
if ($will_ban) {