diff --git a/src/infrastructure/query/policy/PhabricatorCursorPagedPolicyAwareQuery.php b/src/infrastructure/query/policy/PhabricatorCursorPagedPolicyAwareQuery.php --- a/src/infrastructure/query/policy/PhabricatorCursorPagedPolicyAwareQuery.php +++ b/src/infrastructure/query/policy/PhabricatorCursorPagedPolicyAwareQuery.php @@ -724,6 +724,11 @@ 'name' => $field->getFieldName(), 'aliases' => array($legacy_key), ); + + $orders['-'.$modern_key] = array( + 'vector' => array('-'.$modern_key, '-id'), + 'name' => pht('%s (Reversed)', $field->getFieldName()), + ); } }