From a9acddbb45663924f9a1d8472ed07ab13d45c073 Mon Sep 17 00:00:00 2001 From: "dkl%redhat.com" <> Date: Wed, 17 Sep 2008 08:47:36 +0000 Subject: Bug 455583 - Bugzilla::User::can_{set,request}_flag methods should use the respective {grant,request}_group_id values instead of loading new Group object Patch by David Lawrence - r/a=LpSolit --- Bugzilla/User.pm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Bugzilla/User.pm') diff --git a/Bugzilla/User.pm b/Bugzilla/User.pm index 7f59b749c..f495132b1 100644 --- a/Bugzilla/User.pm +++ b/Bugzilla/User.pm @@ -796,15 +796,15 @@ sub can_request_flag { my ($self, $flag_type) = @_; return ($self->can_set_flag($flag_type) - || !$flag_type->request_group - || $self->in_group_id($flag_type->request_group->id)) ? 1 : 0; + || !$flag_type->request_group_id + || $self->in_group_id($flag_type->request_group_id)) ? 1 : 0; } sub can_set_flag { my ($self, $flag_type) = @_; - return (!$flag_type->grant_group - || $self->in_group_id($flag_type->grant_group->id)) ? 1 : 0; + return (!$flag_type->grant_group_id + || $self->in_group_id($flag_type->grant_group_id)) ? 1 : 0; } sub direct_group_membership { -- cgit v1.2.3-24-g4f1b