From f0139c8c929e809d64f7ea5da517bf8bdc273fd1 Mon Sep 17 00:00:00 2001 From: "bugreport%peshkin.net" <> Date: Thu, 31 Oct 2002 10:44:05 +0000 Subject: Bug 175838 Reopening a bug does not clear resolution, nor does selecting 'clear resolution' patch by jeff.hedlund@matrixsi.com 2xr=gerv --- process_bug.cgi | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'process_bug.cgi') diff --git a/process_bug.cgi b/process_bug.cgi index 47f038e52..bf0edc09c 100755 --- a/process_bug.cgi +++ b/process_bug.cgi @@ -519,7 +519,8 @@ sub DoConfirm { sub ChangeStatus { my ($str) = (@_); - if ($str ne $::FORM{'dontchange'}) { + if (!$::FORM{'dontchange'} || + ($str ne $::FORM{'dontchange'})) { DoComma(); if ($::FORM{knob} eq 'reopen') { # When reopening, we need to check whether the bug was ever @@ -571,7 +572,8 @@ sub ChangeStatus { sub ChangeResolution { my ($str) = (@_); - if ($str ne $::FORM{'dontchange'}) { + if (!$::FORM{'dontchange'} || + ($str ne $::FORM{'dontchange'})) { DoComma(); $::query .= "resolution = " . SqlQuote($str); } -- cgit v1.2.3-24-g4f1b