mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-23 05:01:13 +01:00
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
This commit is contained in:
parent
874282db75
commit
2bc045bab8
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ final class DifferentialActionEmailCommand
|
|||
|
||||
public function getCommandObjects() {
|
||||
$actions = DifferentialRevisionActionTransaction::loadAllActions();
|
||||
$actions = msort($actions, 'getRevisionActionOrderVector');
|
||||
$actions = msortv($actions, 'getRevisionActionOrderVector');
|
||||
|
||||
$objects = array();
|
||||
foreach ($actions as $action) {
|
||||
|
|
Loading…
Add table
Reference in a new issue