Commit 9417c2fb authored by lpsolit%gmail.com's avatar lpsolit%gmail.com

Bug 502950: Unconfirming a bug doesn't reset everconfirmed to 0 - Patch by…

Bug 502950: Unconfirming a bug doesn't reset everconfirmed to 0 - Patch by Fré©ric Buclin <LpSolit@gmail.com> r/a=mkanat
parent 86af4d84
......@@ -2143,7 +2143,7 @@ sub set_status {
if ($new_status->is_open) {
# Check for the everconfirmed transition
$self->_set_everconfirmed(1) if $new_status->name ne 'UNCONFIRMED';
$self->_set_everconfirmed($new_status->name eq 'UNCONFIRMED' ? 0 : 1);
$self->clear_resolution();
}
else {
......
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