From f666c3d55933d1476f0e6d56a746ce0f8ed5799a Mon Sep 17 00:00:00 2001 From: epriestley Date: Sat, 30 Jun 2012 06:53:11 -0700 Subject: [PATCH] Minor, fix wording for some maniphest stories --- .../feed/story/PhabricatorFeedStoryManiphest.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/applications/feed/story/PhabricatorFeedStoryManiphest.php b/src/applications/feed/story/PhabricatorFeedStoryManiphest.php index 5d687ebed2..63ff1ef831 100644 --- a/src/applications/feed/story/PhabricatorFeedStoryManiphest.php +++ b/src/applications/feed/story/PhabricatorFeedStoryManiphest.php @@ -95,7 +95,11 @@ final class PhabricatorFeedStoryManiphest case ManiphestAction::ACTION_ASSIGN: case ManiphestAction::ACTION_REASSIGN: if ($owner_phid) { - $one_line = "{$actor_link} {$verb} to {$owner_link}"; + if ($owner_phid == $actor_phid) { + $one_line = "{$actor_link} claimed {$task_link}"; + } else { + $one_line = "{$actor_link} {$verb} {$task_link} to {$owner_link}"; + } } else { $one_line = "{$actor_link} placed {$task_link} up for grabs"; }