Bug 175838 Reopening a bug does not clear resolution, nor does selecting 'clear resolution'

patch by jeff.hedlund@matrixsi.com
2xr=gerv
This commit is contained in:
bugreport%peshkin.net 2002-10-31 02:44:05 +00:00
parent 22455d5555
commit 33a982d398

View File

@ -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);
}