diff options
author | dave%intrec.com <> | 2001-02-24 04:32:13 +0100 |
---|---|---|
committer | dave%intrec.com <> | 2001-02-24 04:32:13 +0100 |
commit | f86b4e5236c979f12f6034a04f2f971f368f5b7b (patch) | |
tree | 0f95d0e1374dc70c763671d1a5a8d8a510baa39f /process_bug.cgi | |
parent | f77c3e33b6cc2ebb339d4c836d73344e19a28aef (diff) | |
download | bugzilla-f86b4e5236c979f12f6034a04f2f971f368f5b7b.tar.gz bugzilla-f86b4e5236c979f12f6034a04f2f971f368f5b7b.tar.xz |
Oops, typo in patch. = -> eq
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"); |