From: dave%intrec.com <> Date: Sat, 24 Feb 2001 03:32:13 +0000 (+0000) Subject: Oops, typo in patch. = -> eq X-Git-Tag: bugzilla-2.12~88 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f86b4e5236c979f12f6034a04f2f971f368f5b7b;p=thirdparty%2Fbugzilla.git Oops, typo in patch. = -> eq --- diff --git a/process_bug.cgi b/process_bug.cgi index f27961aef6..74780acb76 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");