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 /editcomponents.cgi | |
parent | Patch for bug 190226: templatize editversions.cgi; patch by GavinS <bugzilla@... (diff) | |
download | bugzilla-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 'editcomponents.cgi')
-rwxr-xr-x | editcomponents.cgi | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/editcomponents.cgi b/editcomponents.cgi index e2e471f34..7c1ac96ca 100755 --- a/editcomponents.cgi +++ b/editcomponents.cgi @@ -117,11 +117,10 @@ Bugzilla->login(LOGIN_REQUIRED); print Bugzilla->cgi->header(); -unless (UserInGroup("editcomponents")) { - ThrowUserError('auth_cant_edit_components'); - exit; -} - +UserInGroup("editcomponents") + || ThrowUserError("auth_failure", {group => "editcomponents", + action => "edit", + object => "components"}); # # often used variables |