diff options
author | Byron Jones <glob@mozilla.com> | 2015-09-30 08:31:35 +0200 |
---|---|---|
committer | Byron Jones <glob@mozilla.com> | 2015-09-30 08:31:35 +0200 |
commit | a7a445ae1d76c7f2d090a951267e20cb337ea7e9 (patch) | |
tree | 682f4323221e470ae94d503104a2df8937c49d64 /describekeywords.cgi | |
parent | 6050008216dda1d9ea3cb651ea329c8885fde1ae (diff) | |
download | bugzilla-a7a445ae1d76c7f2d090a951267e20cb337ea7e9.tar.gz bugzilla-a7a445ae1d76c7f2d090a951267e20cb337ea7e9.tar.xz |
Bug 1207721 - backed out for causing test failures
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 3850125cc..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('core-security-release'); +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 |