aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjocuri%softhome.net <>2005-01-16 22:07:31 +0000
committerjocuri%softhome.net <>2005-01-16 22:07:31 +0000
commita1d58085aa7e7c2d3e1342b92c4887b0d22926f1 (patch)
tree282b82eb7d968d37e79f8926018dbe83d8f9b02f /editgroups.cgi
parentPatch for bug 190226: templatize editversions.cgi; patch by GavinS <bugzilla@... (diff)
downloadbugzilla-a1d58085aa7e7c2d3e1342b92c4887b0d22926f1.tar.gz
bugzilla-a1d58085aa7e7c2d3e1342b92c4887b0d22926f1.tar.bz2
bugzilla-a1d58085aa7e7c2d3e1342b92c4887b0d22926f1.zip
Patch for bug 265898: edit*.cgi files should all use ThrowUserError(); patch by Frédéric Buclin <LpSolit@gmail.com>, r=vladd, a=myk.
Diffstat (limited to 'editgroups.cgi')
-rwxr-xr-xeditgroups.cgi5
1 files changed, 4 insertions, 1 deletions
diff --git a/editgroups.cgi b/editgroups.cgi
index bc22d518e..3eca512f9 100755
--- a/editgroups.cgi
+++ b/editgroups.cgi
@@ -40,7 +40,10 @@ Bugzilla->login(LOGIN_REQUIRED);
print Bugzilla->cgi->header();
-ThrowUserError("auth_cant_edit_groups") unless UserInGroup("creategroups");
+UserInGroup("creategroups")
+ || ThrowUserError("auth_failure", {group => "creategroups",
+ action => "edit",
+ object => "groups"});
my $action = trim($cgi->param('action') || '');