From db4db81a51a1d8b67069a95142cf9d71a098e8a9 Mon Sep 17 00:00:00 2001 From: "dkl%redhat.com" <> Date: Wed, 22 Jul 2009 19:33:29 +0000 Subject: [PATCH] Bug 505796 - Bugzilla::Group::grant_direct has refers to $self->{members_direct} instead of $self->{grant_direct} Patch by Dave Lawrence - r/a=LpSolit --- Bugzilla/Group.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bugzilla/Group.pm b/Bugzilla/Group.pm index d9f49c0747..98d9ab1a87 100644 --- a/Bugzilla/Group.pm +++ b/Bugzilla/Group.pm @@ -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( -- 2.47.2