diff options
author | jocuri%softhome.net <> | 2005-01-16 22:07:31 +0000 |
---|---|---|
committer | jocuri%softhome.net <> | 2005-01-16 22:07:31 +0000 |
commit | a1d58085aa7e7c2d3e1342b92c4887b0d22926f1 (patch) | |
tree | 282b82eb7d968d37e79f8926018dbe83d8f9b02f /editproducts.cgi | |
parent | 0d26bef4816cffaf4ccd068162130b1af6b32fdb (diff) | |
download | bugs-a1d58085aa7e7c2d3e1342b92c4887b0d22926f1.tar bugs-a1d58085aa7e7c2d3e1342b92c4887b0d22926f1.tar.gz bugs-a1d58085aa7e7c2d3e1342b92c4887b0d22926f1.tar.bz2 bugs-a1d58085aa7e7c2d3e1342b92c4887b0d22926f1.tar.xz bugs-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 'editproducts.cgi')
-rwxr-xr-x | editproducts.cgi | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/editproducts.cgi b/editproducts.cgi index e29fd975d..8fe1a5ec5 100755 --- a/editproducts.cgi +++ b/editproducts.cgi @@ -244,15 +244,10 @@ Bugzilla->login(LOGIN_REQUIRED); print Bugzilla->cgi->header(); -unless (UserInGroup("editcomponents")) { - PutHeader("Not allowed"); - print "Sorry, you aren't a member of the 'editcomponents' group.\n"; - print "And so, you aren't allowed to add, modify or delete products.\n"; - PutTrailer(); - exit; -} - - +UserInGroup("editcomponents") + || ThrowUserError("auth_failure", {group => "editcomponents", + action => "edit", + object => "products"}); # # often used variables |