summaryrefslogtreecommitdiffstats
path: root/post_bug.cgi
diff options
context:
space:
mode:
authortravis%sedsystems.ca <>2005-03-08 06:34:45 +0100
committertravis%sedsystems.ca <>2005-03-08 06:34:45 +0100
commit642af3b414b8f4135170ca03ee7d0dedc49a9c13 (patch)
treeb7b073a5fe0c69ba9c729f2b6f9a9bac35c012b3 /post_bug.cgi
parent0df76bb73976409345e1edc011844af8d99a7a47 (diff)
downloadbugzilla-642af3b414b8f4135170ca03ee7d0dedc49a9c13.tar.gz
bugzilla-642af3b414b8f4135170ca03ee7d0dedc49a9c13.tar.xz
Bug 273825 : UserInGroup("canedit") in post_bug.cgi sounds incorrect
Patch by Frederic Buclin <LpSolit@gmail.com> r=jpeshkin a=justdave
Diffstat (limited to 'post_bug.cgi')
-rwxr-xr-xpost_bug.cgi2
1 files changed, 1 insertions, 1 deletions
diff --git a/post_bug.cgi b/post_bug.cgi
index d701a9172..5a98cc653 100755
--- a/post_bug.cgi
+++ b/post_bug.cgi
@@ -160,7 +160,7 @@ if (Param("useqacontact")) {
}
}
-if (UserInGroup("canedit") || UserInGroup("canconfirm")) {
+if (UserInGroup("editbugs") || UserInGroup("canconfirm")) {
# Default to NEW if the user hasn't selected another status
$::FORM{'bug_status'} ||= "NEW";
} else {