mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-11-26 00:10:55 +01:00
small bug
This commit is contained in:
parent
dc1cfa187b
commit
d6408796fb
@ -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