1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-20 13:52:40 +01:00

Fix a loopy comment

Summary: I wrote this earlier in D14680 but have now realized that it's the same sentence twice when read carefully.

Test Plan: read more carefully

Reviewers: chad

Reviewed By: chad

Differential Revision: https://secure.phabricator.com/D14687
This commit is contained in:
epriestley 2015-12-05 14:52:32 -08:00
parent 505ae7e261
commit 75f126c3d0

View file

@ -386,7 +386,9 @@ class PhabricatorApplicationTransactionView extends AphrontView {
$results = array();
// Sort transactions within the group by action strength, then by
// within actions of similar strength.
// chronological order. This makes sure that multiple actions of the
// same type (like a close, then a reopen) render in the order they
// were performed.
$strength_groups = mgroup($group, 'getActionStrength');
krsort($strength_groups);
foreach ($strength_groups as $strength_group) {