Do not zero remaining_time on close

beta
Vitaliy Filippov 2018-05-21 15:08:53 +03:00
parent 0c553e6a0e
commit d538552033
1 changed files with 0 additions and 8 deletions

View File

@ -1107,14 +1107,6 @@ sub _check_bug_status
}
$self->set('resolution', undef);
}
else
{
# Changing between closed statuses zeroes the remaining time.
if ($old_status && $new_status->id != $old_status->id && $self->remaining_time != 0)
{
$self->set('remaining_time', 0);
}
}
}
sub _check_resolution