|
@@ -657,7 +657,7 @@ function modifyBoard($board_id, &$boardOptions)
|
|
|
);
|
|
|
|
|
|
// Set moderators of this board.
|
|
|
- if (isset($boardOptions['moderators']) || isset($boardOptions['moderator_string']) || isset($boardOptions['moderator_groupss']) || isset($boardOptions['moderator_group_string']))
|
|
|
+ if (isset($boardOptions['moderators']) || isset($boardOptions['moderator_string']) || isset($boardOptions['moderator_groups']) || isset($boardOptions['moderator_group_string']))
|
|
|
{
|
|
|
// Reset current moderators for this board - if there are any!
|
|
|
$smcFunc['db_query']('', '
|
|
@@ -742,13 +742,13 @@ function modifyBoard($board_id, &$boardOptions)
|
|
|
unset($moderator_groups[$k]);
|
|
|
}
|
|
|
|
|
|
- // Find all the id_member's for the member_name's in the list.
|
|
|
+ // Find all the id_group's for all the group names in the list
|
|
|
if (empty($boardOptions['moderator_groups']))
|
|
|
$boardOptions['moderator_groups'] = array();
|
|
|
if (!empty($moderator_groups))
|
|
|
{
|
|
|
$request = $smcFunc['db_query']('', '
|
|
|
- SELECT id_group
|
|
|
+ SELECT id_group, min_posts
|
|
|
FROM {db_prefix}membergroups
|
|
|
WHERE group_name IN ({array_string:moderator_group_list})
|
|
|
LIMIT ' . count($moderator_groups),
|
|
@@ -757,7 +757,13 @@ function modifyBoard($board_id, &$boardOptions)
|
|
|
)
|
|
|
);
|
|
|
while ($row = $smcFunc['db_fetch_assoc']($request))
|
|
|
+ {
|
|
|
+ // Don't allow post groups, "Administrator" or "Moderator"
|
|
|
+ if ($row['min_posts'] != -1 || in_array($row['id_group'], array(1,3)))
|
|
|
+ continue;
|
|
|
+
|
|
|
$boardOptions['moderator_groups'][] = $row['id_group'];
|
|
|
+ }
|
|
|
$smcFunc['db_free_result']($request);
|
|
|
}
|
|
|
}
|