diff --git a/mozilla/webtools/bugzilla/process_bug.cgi b/mozilla/webtools/bugzilla/process_bug.cgi index deb6ea80b98..a62320fd224 100755 --- a/mozilla/webtools/bugzilla/process_bug.cgi +++ b/mozilla/webtools/bugzilla/process_bug.cgi @@ -617,7 +617,8 @@ foreach my $field ("rep_platform", "priority", "bug_severity", "version", "op_sys", "target_milestone", "status_whiteboard") { if (defined $::FORM{$field}) { - if ($::FORM{$field} ne $::FORM{'dontchange'}) { + if (!$::FORM{'dontchange'} + || $::FORM{$field} ne $::FORM{'dontchange'}) { DoComma(); $::query .= "$field = " . SqlQuote(trim($::FORM{$field})); }