@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix another stray "msort()/msortv()" issue

Summary: Ref T13303. See B22967. This should be "msortv()" but didn't get updated properly.

Test Plan: The system works!

Reviewers: amckinley

Reviewed By: amckinley

Maniphest Tasks: T13303

Differential Revision: https://secure.phabricator.com/D20585

+1 -1
+1 -1
src/applications/differential/command/DifferentialActionEmailCommand.php
··· 56 56 57 57 public function getCommandObjects() { 58 58 $actions = DifferentialRevisionActionTransaction::loadAllActions(); 59 - $actions = msort($actions, 'getRevisionActionOrderVector'); 59 + $actions = msortv($actions, 'getRevisionActionOrderVector'); 60 60 61 61 $objects = array(); 62 62 foreach ($actions as $action) {