Commit f0139c8c authored by bugreport%peshkin.net's avatar bugreport%peshkin.net

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

patch by jeff.hedlund@matrixsi.com 2xr=gerv
parent 1b19ddfe
......@@ -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);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment