diff options
author | Byron Jones <glob@mozilla.com> | 2015-09-30 06:47:38 +0200 |
---|---|---|
committer | Byron Jones <glob@mozilla.com> | 2015-09-30 06:47:38 +0200 |
commit | 6050008216dda1d9ea3cb651ea329c8885fde1ae (patch) | |
tree | 574440e0777361368fd67dcb0505492ace5026bb /describekeywords.cgi | |
parent | d9d7e95516bdc059f12b0d0f8bd0cb1048a01785 (diff) | |
download | bugzilla-6050008216dda1d9ea3cb651ea329c8885fde1ae.tar.gz bugzilla-6050008216dda1d9ea3cb651ea329c8885fde1ae.tar.xz |
Bug 1207721 - consider using a broader group as the insider-group (instead of core-security)
Diffstat (limited to 'describekeywords.cgi')
-rwxr-xr-x | describekeywords.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/describekeywords.cgi b/describekeywords.cgi index 056f58269..3850125cc 100755 --- a/describekeywords.cgi +++ b/describekeywords.cgi @@ -40,7 +40,7 @@ Bugzilla->switch_to_shadow_db; # Hide bug counts for security keywords from users who aren't a member of the # security group -my $can_see_security = Bugzilla->user->in_group('core-security'); +my $can_see_security = Bugzilla->user->in_group('core-security-release'); my $keywords = Bugzilla::Keyword->get_all_with_bug_count(); foreach my $keyword (@$keywords) { $keyword->{'bug_count'} = 0 |