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/FlagType.pm | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Bugzilla/FlagType.pm') diff --git a/Bugzilla/FlagType.pm b/Bugzilla/FlagType.pm index ffa36863e..2892a8392 100644 --- a/Bugzilla/FlagType.pm +++ b/Bugzilla/FlagType.pm @@ -177,6 +177,8 @@ sub is_requestable { return $_[0]->{'is_requestable'}; } sub is_requesteeble { return $_[0]->{'is_requesteeble'}; } sub is_multiplicable { return $_[0]->{'is_multiplicable'}; } sub sortkey { return $_[0]->{'sortkey'}; } +sub request_group_id { return $_[0]->{'request_group_id'}; } +sub grant_group_id { return $_[0]->{'grant_group_id'}; } ############################### #### Methods #### -- cgit v1.2.3-24-g4f1b