diff options
author | lpsolit%gmail.com <> | 2006-10-07 05:36:53 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2006-10-07 05:36:53 +0200 |
commit | ffa70a47a8eb345986d22b93c13ccdb3cf84e4f3 (patch) | |
tree | e0d7656e1c8a22bb6f2c6438638ce5825f972f66 /Bugzilla | |
parent | 06986da30e4de43957d8c0365cce8491f7bfc9c7 (diff) | |
download | bugzilla-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-x | Bugzilla/Bug.pm | 2 |
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; |