diff options
author | lpsolit%gmail.com <> | 2005-09-16 07:01:56 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2005-09-16 07:01:56 +0200 |
commit | 0e9fdfdcb1b423f9d26747d779bf3d368b92ced1 (patch) | |
tree | 4efe75517a68809a853913add2d16b4be08ce931 /editmilestones.cgi | |
parent | b0fbfe878dd8194fbfb7c783e3e5498c50a2f8d9 (diff) | |
download | bugzilla-0e9fdfdcb1b423f9d26747d779bf3d368b92ced1.tar.gz bugzilla-0e9fdfdcb1b423f9d26747d779bf3d368b92ced1.tar.xz |
Bug 304696: Replace UserInGroup() by $user->in_group() when checking user privs in edit*.cgi files - Patch by Frédéric Buclin <LpSolit@gmail.com> r=mkanat a=justdave
Diffstat (limited to 'editmilestones.cgi')
-rwxr-xr-x | editmilestones.cgi | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/editmilestones.cgi b/editmilestones.cgi index 18c3f62aa..b9c4e0d51 100755 --- a/editmilestones.cgi +++ b/editmilestones.cgi @@ -23,7 +23,6 @@ require "globals.pl"; use Bugzilla::Constants; use Bugzilla::Config qw(:DEFAULT $datadir); -use Bugzilla::User; use Bugzilla::Product; use Bugzilla::Milestone; use Bugzilla::Bug; @@ -42,7 +41,7 @@ my $whoid = $user->id; print $cgi->header(); -UserInGroup("editcomponents") +$user->in_group('editcomponents') || ThrowUserError("auth_failure", {group => "editcomponents", action => "edit", object => "milestones"}); |