From 1ad96216f896f90aea1c5fad272fac7017e3d6b1 Mon Sep 17 00:00:00 2001 From: "bbaetz%student.usyd.edu.au" Date: Sun, 10 Nov 2002 08:33:45 +0000 Subject: [PATCH] Bug 179321 - cannot clear status whiteboard entirely r=joel x2 a=justdave git-svn-id: svn://10.0.0.236/trunk@133532 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/webtools/bugzilla/process_bug.cgi | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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})); }