diff options
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; |