From: travis%sedsystems.ca <> Date: Tue, 8 Mar 2005 05:35:16 +0000 (+0000) Subject: Bug 273825 : UserInGroup("canedit") in post_bug.cgi sounds incorrect X-Git-Tag: bugzilla-2.18.1~30 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0a59a855a06ea98ab31b0cc63d9abaa12f484cd2;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 609993d93a..89be43c917 100755 --- a/post_bug.cgi +++ b/post_bug.cgi @@ -152,7 +152,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 {