diff options
author | lpsolit%gmail.com <> | 2007-07-13 20:10:39 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2007-07-13 20:10:39 +0200 |
commit | ff222adc4a6cb0349f7642d61bb63d2ff970607c (patch) | |
tree | ba87c96d90582e7740991bc2c65dba56c92ee76c /editworkflow.cgi | |
parent | 012d45ae9579b0f1690a2daed8212f38e9c9e26a (diff) | |
download | bugzilla-ff222adc4a6cb0349f7642d61bb63d2ff970607c.tar.gz bugzilla-ff222adc4a6cb0349f7642d61bb63d2ff970607c.tar.xz |
Bug 385415: Bugs marked as duplicate or moved to another installation always go to the RESOLVED state, even if the workflow has RESOLVED excluded from it (or if this bug status has been removed or renamed). Some major problems related to the workflow when upgrading or installing 3.1 are also fixed here - Patch by Frédéric Buclin <LpSolit@gmail.com> r/a=mkanat
Diffstat (limited to 'editworkflow.cgi')
-rw-r--r-- | editworkflow.cgi | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/editworkflow.cgi b/editworkflow.cgi index ac914f76d..6aaed345e 100644 --- a/editworkflow.cgi +++ b/editworkflow.cgi @@ -100,7 +100,10 @@ elsif ($action eq 'update') { foreach my $new (@$statuses) { next if $old->id == $new->id; - if ($cgi->param('w_' . $old->id . '_' . $new->id)) { + # All transitions to 'duplicate_or_move_bug_status' must be valid. + if ($cgi->param('w_' . $old->id . '_' . $new->id) + || ($new->name eq Bugzilla->params->{'duplicate_or_move_bug_status'})) + { $sth_insert->execute($old->id, $new->id) unless defined $workflow->{$old->id}->{$new->id}; } |