From 6f894ad4ee749cff0131968a9548b83c59254a91 Mon Sep 17 00:00:00 2001 From: Savetheinternet Date: Sun, 3 Jul 2011 23:11:31 +1000 Subject: [PATCH] made the per-board mod functionality optional --- inc/config.php | 3 +++ inc/mod.php | 4 +++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/inc/config.php b/inc/config.php index 0c7dfb8f..e495e4da 100644 --- a/inc/config.php +++ b/inc/config.php @@ -367,6 +367,9 @@ // Permissions // What level of administration you need to: + // Don't worry about per-board moderators. Let all mods moderate any board. + $config['mod']['skip_per_board'] = true; + /* Post Controls */ // View IP addresses $config['mod']['show_ip'] = MOD; diff --git a/inc/mod.php b/inc/mod.php index 0acb3864..3b85d50a 100644 --- a/inc/mod.php +++ b/inc/mod.php @@ -15,6 +15,8 @@ } function hasPermission($action = null, $board = null, $_mod = null) { + global $config; + if(isset($_mod)) $mod = &$_mod; else @@ -23,7 +25,7 @@ if(isset($action) && $mod['type'] < $action) return false; - if(isset($board) && !in_array($board, $mod['boards'])) + if(isset($board) && !$config['mod']['skip_per_board'] && !in_array($board, $mod['boards'])) return false; return true;