diff options
Diffstat (limited to 'process_bug.cgi')
-rwxr-xr-x | process_bug.cgi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/process_bug.cgi b/process_bug.cgi index f27961aef..74780acb7 100755 --- a/process_bug.cgi +++ b/process_bug.cgi @@ -158,8 +158,8 @@ sub CheckCanChangeField { if ($f =~ /^longdesc/) { return 1; } - if ($f = "resolution") { # always OK this. if they really can't, - return 1; # it'll flag it when "status" is checked. + if ($f eq "resolution") { # always OK this. if they really can't, + return 1; # it'll flag it when "status" is checked. } if ($UserInEditGroupSet < 0) { $UserInEditGroupSet = UserInGroup("editbugs"); |