diff options
author | David Lawrence <dkl@mozilla.com> | 2015-08-27 20:45:55 +0200 |
---|---|---|
committer | David Lawrence <dkl@mozilla.com> | 2015-08-27 20:45:55 +0200 |
commit | 933f413244c133d8ac86ccecb869bd356c73b92c (patch) | |
tree | 4f3dafb3385eb657936a20afe6c4d5e712d8332c /describekeywords.cgi | |
parent | e6d45b6d6028527079744af20dc9407a2a3867f2 (diff) | |
download | bugzilla-933f413244c133d8ac86ccecb869bd356c73b92c.tar.gz bugzilla-933f413244c133d8ac86ccecb869bd356c73b92c.tar.xz |
Bug 1198598: change the bug count restrictions in describekeywords from 'security-group' to '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 b8ed9bb48..056f58269 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('security-group'); +my $can_see_security = Bugzilla->user->in_group('core-security'); my $keywords = Bugzilla::Keyword->get_all_with_bug_count(); foreach my $keyword (@$keywords) { $keyword->{'bug_count'} = 0 |