diff options
author | jocuri%softhome.net <> | 2003-11-02 04:02:47 +0000 |
---|---|---|
committer | jocuri%softhome.net <> | 2003-11-02 04:02:47 +0000 |
commit | af679ba9288afc64a690bf379ce31c7142ebcabd (patch) | |
tree | bc6e848c0796b98ef03f1afccdd6773c0c12aaac /buglist.cgi | |
parent | Bug 123565: Add to FAQ: Why can't I close bugs from "Change Several Bugs at O... (diff) | |
download | bugzilla-af679ba9288afc64a690bf379ce31c7142ebcabd.tar.gz bugzilla-af679ba9288afc64a690bf379ce31c7142ebcabd.tar.bz2 bugzilla-af679ba9288afc64a690bf379ce31c7142ebcabd.zip |
Bug 224397: Mismatch of user error: insufficient_privs vs insufficient_perms; patch by caduvall@glue.umd.edu (chaduv); r=justdave; a=justdave.
Diffstat (limited to 'buglist.cgi')
-rwxr-xr-x | buglist.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buglist.cgi b/buglist.cgi index f56b007ad..fa664c251 100755 --- a/buglist.cgi +++ b/buglist.cgi @@ -75,7 +75,7 @@ my $dotweak = $::FORM{'tweak'} ? 1 : 0; # Log the user in if ($dotweak) { confirm_login(); - UserInGroup("editbugs") || ThrowUserError("insufficient_perms_for_multi"); + UserInGroup("editbugs") || ThrowUserError("insufficient_privs_for_multi"); GetVersionTable(); } else { |