Commit 190a7ed5 authored by dkl%redhat.com's avatar dkl%redhat.com

Bug 505796 - Bugzilla::Group::grant_direct has refers to $self->{members_direct}…

Bug 505796 - Bugzilla::Group::grant_direct has refers to $self->{members_direct} instead of $self->{grant_direct} Patch by Dave Lawrence <dkl@redhat.com> - r/a=LpSolit
parent e5dc8982
......@@ -103,7 +103,7 @@ sub grant_direct {
my ($self, $type) = @_;
$self->{grant_direct} ||= {};
return $self->{grant_direct}->{$type}
if defined $self->{members_direct}->{$type};
if defined $self->{grant_direct}->{$type};
my $dbh = Bugzilla->dbh;
my $ids = $dbh->selectcol_arrayref(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment