summaryrefslogtreecommitdiffstats
path: root/process_bug.cgi
diff options
context:
space:
mode:
authordave%intrec.com <>2001-02-24 04:32:13 +0100
committerdave%intrec.com <>2001-02-24 04:32:13 +0100
commitf86b4e5236c979f12f6034a04f2f971f368f5b7b (patch)
tree0f95d0e1374dc70c763671d1a5a8d8a510baa39f /process_bug.cgi
parentf77c3e33b6cc2ebb339d4c836d73344e19a28aef (diff)
downloadbugzilla-f86b4e5236c979f12f6034a04f2f971f368f5b7b.tar.gz
bugzilla-f86b4e5236c979f12f6034a04f2f971f368f5b7b.tar.xz
Oops, typo in patch. = -> eq
Diffstat (limited to 'process_bug.cgi')
-rwxr-xr-xprocess_bug.cgi4
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");