@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 wording for some maniphest stories

+5 -1
+5 -1
src/applications/feed/story/PhabricatorFeedStoryManiphest.php
··· 95 95 case ManiphestAction::ACTION_ASSIGN: 96 96 case ManiphestAction::ACTION_REASSIGN: 97 97 if ($owner_phid) { 98 - $one_line = "{$actor_link} {$verb} to {$owner_link}"; 98 + if ($owner_phid == $actor_phid) { 99 + $one_line = "{$actor_link} claimed {$task_link}"; 100 + } else { 101 + $one_line = "{$actor_link} {$verb} {$task_link} to {$owner_link}"; 102 + } 99 103 } else { 100 104 $one_line = "{$actor_link} placed {$task_link} up for grabs"; 101 105 }