Browse Source

Protected groups can now be assigned to moderate boards as well

Signed-off-by: Michael Eshom <[email protected]>
Michael Eshom 11 years ago
parent
commit
2050ef1001
2 changed files with 2 additions and 2 deletions
  1. 1 1
      Sources/Subs-Editor.php
  2. 1 1
      Themes/default/languages/ManageBoards.english.php

+ 1 - 1
Sources/Subs-Editor.php

@@ -2248,7 +2248,7 @@ function AutoSuggest_Search_MemberGroups()
 	$_REQUEST['search'] = strtr($_REQUEST['search'], array('%' => '\%', '_' => '\_', '*' => '%', '?' => '_', '&#038;' => '&amp;'));
 
 	// Find the group.
-	// Only return groups which are not post-based, not "Hidden", not the "Moderators" group and not "Protected"
+	// Only return groups which are not post-based and not "Hidden", but not the "Administrators" or "Moderators" groups.
 	$request = $smcFunc['db_query']('', '
 		SELECT id_group, group_name
 		FROM {db_prefix}membergroups

+ 1 - 1
Themes/default/languages/ManageBoards.english.php

@@ -54,7 +54,7 @@ $txt['mboards_groups_post_group'] = 'This group is a post count based group.';
 $txt['mboards_moderators'] = 'Moderators';
 $txt['mboards_moderators_desc'] = 'Additional members to have moderation privileges on this board.  Note that administrators don\'t have to be listed here.';
 $txt['mboards_moderator_groups'] = 'Moderator Groups';
-$txt['mboards_moderator_groups_desc'] = 'Groups whose members have moderation priveleges on this board. Note that this is limited to groups which are not post-based, not "hidden" and not "protected".';
+$txt['mboards_moderator_groups_desc'] = 'Groups whose members have moderation priveleges on this board. Note that this is limited to groups which are not post-based and not "hidden".';
 $txt['mboards_count_posts'] = 'Count Posts';
 $txt['mboards_count_posts_desc'] = 'Makes new replies and topics raise members\' post counts.';
 $txt['mboards_unchanged'] = 'Unchanged';