Skip to content

Commit e8a33a1

Browse files
committed
Bug 1074350: "new to bugzilla" indicator should be removed when a user is added to 'editbugs', not 'canconfirm'
1 parent 1030251 commit e8a33a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extensions/TagNewUsers/Extension.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ sub _is_new {
188188
my ($self) = @_;
189189

190190
if (!exists $self->{is_new}) {
191-
if ($self->in_group('canconfirm')) {
191+
if ($self->in_group('editbugs')) {
192192
$self->{is_new} = 0;
193193
} else {
194194
$self->{is_new} = ($self->comment_count <= COMMENT_COUNT)

0 commit comments

Comments
 (0)