diff options
author | terry%mozilla.org <> | 2000-02-18 00:59:55 +0100 |
---|---|---|
committer | terry%mozilla.org <> | 2000-02-18 00:59:55 +0100 |
commit | 98292643e4c104d5285224bcad915af6f61f9b29 (patch) | |
tree | 10bead652a14c6b7b6c30dd549cf58bd3382f50d /buglist.cgi | |
parent | 4410f69187675685ff241885622643652d72920e (diff) | |
download | bugzilla-98292643e4c104d5285224bcad915af6f61f9b29.tar.gz bugzilla-98292643e4c104d5285224bcad915af6f61f9b29.tar.xz |
Oops; had the name of the "editbugs" group typed in wrong in a couple
of places.
Diffstat (limited to 'buglist.cgi')
-rwxr-xr-x | buglist.cgi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/buglist.cgi b/buglist.cgi index 096508211..297d32255 100755 --- a/buglist.cgi +++ b/buglist.cgi @@ -825,7 +825,7 @@ my $dotweak = defined $::FORM{'tweak'}; if ($dotweak) { confirm_login(); - if (!UserInGroup("canedit")) { + if (!UserInGroup("editbugs")) { print qq{ Sorry; you do not have sufficient priviledges to edit a bunch of bugs at once. @@ -1378,7 +1378,7 @@ if ($count > 0) { <NOBR><A HREF=\"enter_bug.cgi\">Enter New Bug</A></NOBR> <NOBR><A HREF=\"colchange.cgi?$::buffer\">Change columns</A></NOBR>"; - if (!$dotweak && $count > 1 && UserInGroup("canedit")) { + if (!$dotweak && $count > 1 && UserInGroup("editbugs")) { print " \n"; print "<NOBR><A HREF=\"buglist.cgi?$fields$orderpart&tweak=1\">"; print "Change several bugs at once</A></NOBR>\n"; |