Commit 211e7fc5 authored by myk%mozilla.org's avatar myk%mozilla.org

Fix for bug 129016: Corrects conditional operator.

Patch by Myk Melez <myk@mozilla.org>. r=bbaetz x 2
parent cd081e35
......@@ -125,7 +125,7 @@ if (exists $::FORM{'bug_status'}) {
# or NEW, depending on votestoconfirm if either the given state was
# unconfirmed (so that a user can't override the below check), or if
# the user doesn't have permission to change the default status anyway
if ($::FORM{'bug_status'} == $::unconfirmedstate
if ($::FORM{'bug_status'} eq $::unconfirmedstate
|| (!UserInGroup("canedit") && !UserInGroup("canconfirm"))) {
delete $::FORM{'bug_status'};
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment