# 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
bug_group => 1,
all_products => 1,
},
+ {
+ name => 'core-security-release',
+ description => 'Release-track Client Security Bug',
+ no_admin => 1,
+ bug_group => 1,
+ all_products => 1,
+ },
{
name => 'can_edit_comments',
description => 'Members of this group will be able to edit comments',
'&long_desc_type=substring',
defaultseverity => 'normal',
edit_comments_group => 'can_edit_comments',
- insidergroup => 'core-security-release',
+ insidergroup => 'core-security',
last_visit_keep_days => '28',
lxr_url => 'http://mxr.mozilla.org/mozilla',
lxr_root => 'mozilla/',
undef, $editbugs->id, $canconfirm->id);
# BMO: Update default security group settings for new products
-my $default_security_group = Bugzilla::Group->new({ name => 'core-security-release' });
+my $default_security_group = Bugzilla::Group->new({ name => 'core-security' });
$default_security_group ||= Bugzilla::Group->new({ name => 'Master' });
if ($default_security_group) {
$dbh->do('UPDATE products SET security_group_id = ? WHERE security_group_id IS NULL',