Reorder "Merge" transaction to make "Close as Duplicate" produce a "[Merged]" email subject
Summary: Fixes T11782. When you "Close as Duplicate", generate a "[Merged]" email by making the merge the first transaction. (There are other, more-deterministic ways to do this with action strength, but this is much simpler and I believe it suffices.) Test Plan: Used "Close as Duplicate", got a "[Merged]" email out of it. Reviewers: amckinley Reviewed By: amckinley Maniphest Tasks: T11782 Differential Revision: https://secure.phabricator.com/D19972
This commit is contained in:
@@ -31,13 +31,12 @@ abstract class ManiphestTaskRelationship
|
|||||||
$subscriber_phids = $this->loadMergeSubscriberPHIDs($tasks);
|
$subscriber_phids = $this->loadMergeSubscriberPHIDs($tasks);
|
||||||
|
|
||||||
$xactions[] = id(new ManiphestTransaction())
|
$xactions[] = id(new ManiphestTransaction())
|
||||||
->setTransactionType(PhabricatorTransactions::TYPE_SUBSCRIBERS)
|
->setTransactionType(ManiphestTaskMergedFromTransaction::TRANSACTIONTYPE)
|
||||||
->setNewValue(array('+' => $subscriber_phids));
|
->setNewValue(mpull($tasks, 'getPHID'));
|
||||||
|
|
||||||
$xactions[] = id(new ManiphestTransaction())
|
$xactions[] = id(new ManiphestTransaction())
|
||||||
->setTransactionType(
|
->setTransactionType(PhabricatorTransactions::TYPE_SUBSCRIBERS)
|
||||||
ManiphestTaskMergedFromTransaction::TRANSACTIONTYPE)
|
->setNewValue(array('+' => $subscriber_phids));
|
||||||
->setNewValue(mpull($tasks, 'getPHID'));
|
|
||||||
|
|
||||||
return $xactions;
|
return $xactions;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user