From: lpsolit%gmail.com <> Date: Sat, 7 Oct 2006 03:36:53 +0000 (+0000) Subject: Bug 355744: Bugs are not added to mandatory groups on bug creation - Patch by Frédéri... X-Git-Tag: bugzilla-2.23.3~15 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ffa70a47a8eb345986d22b93c13ccdb3cf84e4f3;p=thirdparty%2Fbugzilla.git Bug 355744: Bugs are not added to mandatory groups on bug creation - Patch by Frédéric Buclin r/a=myk --- diff --git a/Bugzilla/Bug.pm b/Bugzilla/Bug.pm index d62d690959..825ec41492 100755 --- a/Bugzilla/Bug.pm +++ b/Bugzilla/Bug.pm @@ -637,7 +637,7 @@ sub _check_groups { } foreach my $id (keys %$controls) { - next unless $controls->{$id}->{isactive}; + next unless $controls->{$id}->{'group'}->is_active; my $membercontrol = $controls->{$id}->{membercontrol} || 0; my $othercontrol = $controls->{$id}->{othercontrol} || 0;