Browse Source

flipped bool

block_mass_delete_threads
Your Name 2 years ago
parent
commit
6a2d2bcb67
  1. 2
      inc/mod/pages.php

2
inc/mod/pages.php

@ -2218,7 +2218,7 @@ function mod_deletebyip($boardName, $post, $global = false) {
error("The following IP is protected by the deletebyip_excluded_ips configuration ".$ip);
}
$threadFilter = $config['deletebyip_exclude_threads'] ? "" : "AND `thread` IS NOT NULL";
$threadFilter = $config['deletebyip_exclude_threads'] ? "AND `thread` IS NOT NULL" : "";
$boards = $global ? listBoards() : array(array('uri' => $boardName));

Loading…
Cancel
Save