From 81134d7e7d54ed2c2d42d08413b022eefe87bf03 Mon Sep 17 00:00:00 2001 From: epriestley Date: Thu, 30 May 2019 15:34:54 -0700 Subject: [PATCH] After reloading transactions for the recipient while building transaction mail, put them in the input order Summary: Ref T13303. In D20525 I fixed an issue where transaction rendering could use cached values with the wrong viewer by reloading transactions. However, reloading transactions may also reorder them as a side effect, since `withPHIDs(...)` does not imply an order. This can make transaction rendering order in mail wrong/inconsistent. Instead, reorder the transactions before continuing so mail transaction order is consistent. Test Plan: Applied a group of transactions to a task, saw a more consistent rendering order in mail after the change. Reviewers: amckinley Reviewed By: amckinley Maniphest Tasks: T13303 Differential Revision: https://secure.phabricator.com/D20563 --- .../editor/PhabricatorApplicationTransactionEditor.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/applications/transactions/editor/PhabricatorApplicationTransactionEditor.php b/src/applications/transactions/editor/PhabricatorApplicationTransactionEditor.php index 98a52715b7..55dedb863b 100644 --- a/src/applications/transactions/editor/PhabricatorApplicationTransactionEditor.php +++ b/src/applications/transactions/editor/PhabricatorApplicationTransactionEditor.php @@ -3084,6 +3084,11 @@ abstract class PhabricatorApplicationTransactionEditor ->withObjectPHIDs(array($object->getPHID())) ->withPHIDs($xaction_phids) ->execute(); + + // Sort the mail transactions in the input order. + $mail_xactions = mpull($mail_xactions, null, 'getPHID'); + $mail_xactions = array_select_keys($mail_xactions, $xaction_phids); + $mail_xactions = array_values($mail_xactions); } else { $mail_xactions = array(); }