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

patch by jeff.hedlund@matrixsi.com
2xr=gerv


git-svn-id: svn://10.0.0.236/trunk@132753 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
bugreport%peshkin.net 2002-10-31 02:44:05 +00:00
parent a39d16fcfc
commit ad78b41096

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