diff options
author | travis%sedsystems.ca <> | 2005-03-08 06:34:45 +0100 |
---|---|---|
committer | travis%sedsystems.ca <> | 2005-03-08 06:34:45 +0100 |
commit | 642af3b414b8f4135170ca03ee7d0dedc49a9c13 (patch) | |
tree | b7b073a5fe0c69ba9c729f2b6f9a9bac35c012b3 | |
parent | 0df76bb73976409345e1edc011844af8d99a7a47 (diff) | |
download | bugzilla-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
-rwxr-xr-x | post_bug.cgi | 2 |
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 { |