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 /editusers.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 'editusers.cgi')
-rwxr-xr-x | editusers.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editusers.cgi b/editusers.cgi index ade2f0ca7..27c16bbe7 100755 --- a/editusers.cgi +++ b/editusers.cgi @@ -43,7 +43,7 @@ my $editusers = $user->in_group('editusers'); # Reject access if there is no sense in continuing. $editusers - || Bugzilla->user->can_bless() + || $user->can_bless() || ThrowUserError("auth_failure", {group => "editusers", reason => "cant_bless", action => "edit", |