diff options
author | lpsolit%gmail.com <> | 2005-09-16 05:01:56 +0000 |
---|---|---|
committer | lpsolit%gmail.com <> | 2005-09-16 05:01:56 +0000 |
commit | 0e9fdfdcb1b423f9d26747d779bf3d368b92ced1 (patch) | |
tree | 4efe75517a68809a853913add2d16b4be08ce931 /editcomponents.cgi | |
parent | b0fbfe878dd8194fbfb7c783e3e5498c50a2f8d9 (diff) | |
download | bugs-0e9fdfdcb1b423f9d26747d779bf3d368b92ced1.tar bugs-0e9fdfdcb1b423f9d26747d779bf3d368b92ced1.tar.gz bugs-0e9fdfdcb1b423f9d26747d779bf3d368b92ced1.tar.bz2 bugs-0e9fdfdcb1b423f9d26747d779bf3d368b92ced1.tar.xz bugs-0e9fdfdcb1b423f9d26747d779bf3d368b92ced1.zip |
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 'editcomponents.cgi')
-rwxr-xr-x | editcomponents.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editcomponents.cgi b/editcomponents.cgi index 703f124c9..096570d82 100755 --- a/editcomponents.cgi +++ b/editcomponents.cgi @@ -53,7 +53,7 @@ my $whoid = $user->id; print $cgi->header(); -UserInGroup("editcomponents") +$user->in_group('editcomponents') || ThrowUserError("auth_failure", {group => "editcomponents", action => "edit", object => "components"}); |