From ffa70a47a8eb345986d22b93c13ccdb3cf84e4f3 Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" <> Date: Sat, 7 Oct 2006 03:36:53 +0000 Subject: Bug 355744: Bugs are not added to mandatory groups on bug creation - Patch by Frédéric Buclin r/a=myk MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Bugzilla/Bug.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Bugzilla') diff --git a/Bugzilla/Bug.pm b/Bugzilla/Bug.pm index d62d69095..825ec4149 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; -- cgit v1.2.3-24-g4f1b