summaryrefslogtreecommitdiffstats
path: root/Bugzilla
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2006-10-07 05:36:53 +0200
committerlpsolit%gmail.com <>2006-10-07 05:36:53 +0200
commitffa70a47a8eb345986d22b93c13ccdb3cf84e4f3 (patch)
treee0d7656e1c8a22bb6f2c6438638ce5825f972f66 /Bugzilla
parent06986da30e4de43957d8c0365cce8491f7bfc9c7 (diff)
downloadbugzilla-ffa70a47a8eb345986d22b93c13ccdb3cf84e4f3.tar.gz
bugzilla-ffa70a47a8eb345986d22b93c13ccdb3cf84e4f3.tar.xz
Bug 355744: Bugs are not added to mandatory groups on bug creation - Patch by Frédéric Buclin <LpSolit@gmail.com> r/a=myk
Diffstat (limited to 'Bugzilla')
-rwxr-xr-xBugzilla/Bug.pm2
1 files changed, 1 insertions, 1 deletions
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;