@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.

Minor, fix an order issue in the token leaderboard.

Auditors: chad

+5
+5
src/applications/tokens/query/PhabricatorTokenReceiverQuery.php
··· 22 22 if (!$phids) { 23 23 return array(); 24 24 } 25 + 25 26 $objects = id(new PhabricatorObjectHandleData($phids)) 26 27 ->setViewer($this->getViewer()) 27 28 ->loadObjects(); 29 + 30 + // Reorder the objects in the input order. 31 + $objects = array_select_keys($objects, $phids); 32 + 28 33 return $objects; 29 34 } 30 35