From: travis%sedsystems.ca <> Date: Tue, 8 Mar 2005 05:34:45 +0000 (+0000) Subject: Bug 273825 : UserInGroup("canedit") in post_bug.cgi sounds incorrect X-Git-Tag: bugzilla-2.19.3~202 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=642af3b414b8f4135170ca03ee7d0dedc49a9c13;p=thirdparty%2Fbugzilla.git Bug 273825 : UserInGroup("canedit") in post_bug.cgi sounds incorrect Patch by Frederic Buclin r=jpeshkin a=justdave --- diff --git a/post_bug.cgi b/post_bug.cgi index d701a91721..5a98cc653e 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 {