small bug
This commit is contained in:
parent
25cdd35663
commit
a4fe0d9d47
@ -415,10 +415,13 @@
|
||||
if(isset($action) && $mod['type'] < $action)
|
||||
return false;
|
||||
|
||||
if(!isset($board))
|
||||
if(!isset($board) || $config['mod']['skip_per_board'])
|
||||
return true;
|
||||
|
||||
if(!$config['mod']['skip_per_board'] && !in_array('*', $mod['boards']) && !in_array($board, $mod['boards']))
|
||||
if(!isest($mod['boards']))
|
||||
return false;
|
||||
|
||||
if(!in_array('*', $mod['boards']) && !in_array($board, $mod['boards']))
|
||||
return false;
|
||||
|
||||
return true;
|
||||
|
Loading…
Reference in New Issue
Block a user