]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 273825 : UserInGroup("canedit") in post_bug.cgi sounds incorrect
authortravis%sedsystems.ca <>
Tue, 8 Mar 2005 05:34:45 +0000 (05:34 +0000)
committertravis%sedsystems.ca <>
Tue, 8 Mar 2005 05:34:45 +0000 (05:34 +0000)
Patch by Frederic Buclin <LpSolit@gmail.com>  r=jpeshkin   a=justdave

post_bug.cgi

index d701a91721dee5fac7160faa4997f1981cf8718b..5a98cc653e2e08bdc4c15e1d1ee5b6b8fc183695 100755 (executable)
@@ -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 {