diff options
Diffstat (limited to 'Bugzilla/Bug.pm')
-rw-r--r-- | Bugzilla/Bug.pm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Bugzilla/Bug.pm b/Bugzilla/Bug.pm index 23a92b080..a0c15bafa 100644 --- a/Bugzilla/Bug.pm +++ b/Bugzilla/Bug.pm @@ -1323,7 +1323,10 @@ sub _check_bug_status { } - if (ref $invocant && $new_status->name eq 'ASSIGNED' + if (ref $invocant + && ($new_status->name eq 'IN_PROGRESS' + # Backwards-compat for the old default workflow. + or $new_status->name eq 'ASSIGNED') && Bugzilla->params->{"usetargetmilestone"} && Bugzilla->params->{"musthavemilestoneonaccept"} # musthavemilestoneonaccept applies only if at least two |