Bug 278650 : editversions.cgi still uses "auth_cant_edit_versions"

Patch by Frederic Buclin <LpSolit@gmail.com>  r=vladd  a=justdave
This commit is contained in:
travis%sedsystems.ca 2005-01-27 19:50:25 +00:00
parent b6bb86a533
commit 3b3dae604f
2 changed files with 4 additions and 10 deletions

View File

@ -115,11 +115,10 @@ Bugzilla->login(LOGIN_REQUIRED);
print Bugzilla->cgi->header();
unless (UserInGroup("editcomponents")) {
ThrowUserError('auth_cant_edit_versions');
exit;
}
UserInGroup("editcomponents")
|| ThrowUserError("auth_failure", {group => "editcomponents",
action => "edit",
object => "versions"});
#
# often used variables

View File

@ -218,11 +218,6 @@
Sorry, but you can not delete the default classification,
'[% name FILTER html %]'.
[% ELSIF error == "auth_cant_edit_versions" %]
[% title = "Access Denied" %]
Sorry, you aren't a member of the 'editcomponents' group, and so
you aren't allowed to add, modify or delete versions.
[% ELSIF error == "component_already_exists" %]
[% title = "Component Already Exists" %]
A component with the name '[% name FILTER html %]' already exists.