From 95bfc797b43bd7f1d8f45ea629aa6119b51e8a29 Mon Sep 17 00:00:00 2001 From: David Lawrence Date: Fri, 28 Jan 2011 11:30:29 -0500 Subject: Bug 622080 - Change group which can moderate quips r/a=mkanat --- quips.cgi | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'quips.cgi') diff --git a/quips.cgi b/quips.cgi index 97993d488..74c0047a1 100755 --- a/quips.cgi +++ b/quips.cgi @@ -79,7 +79,7 @@ if ($action eq "add") { check_hash_token($token, ['create-quips']); # Add the quip my $approved = (Bugzilla->params->{'quip_list_entry_control'} eq "open") - || Bugzilla->user->in_group('admin') || 0; + || $user->in_group('bz_quip_moderators') || 0; my $comment = $cgi->param("quip"); $comment || ThrowUserError("need_quip"); trick_taint($comment); # Used in a placeholder below @@ -91,8 +91,8 @@ if ($action eq "add") { } if ($action eq 'approve') { - $user->in_group('admin') - || ThrowUserError("auth_failure", {group => "admin", + $user->in_group('bz_quip_moderators') + || ThrowUserError("auth_failure", {group => "bz_quip_moderators", action => "approve", object => "quips"}); @@ -131,8 +131,8 @@ if ($action eq 'approve') { } if ($action eq "delete") { - Bugzilla->user->in_group("admin") - || ThrowUserError("auth_failure", {group => "admin", + $user->in_group('bz_quip_moderators') + || ThrowUserError("auth_failure", {group => "bz_quip_moderators", action => "delete", object => "quips"}); my $quipid = $cgi->param("quipid"); -- cgit v1.2.3-24-g4f1b