From 28f3f8bf7bd60a0b7371acde1a45769f5043b9c6 Mon Sep 17 00:00:00 2001 From: Bob Trahan Date: Tue, 4 Mar 2014 12:05:42 -0800 Subject: [PATCH] Board feed story - make the task a link too Summary: looks better, more useful Test Plan: looked better, was more useful when I observed my feed Reviewers: chad, epriestley Reviewed By: epriestley CC: Korvin, epriestley, aran Differential Revision: https://secure.phabricator.com/D8394 --- src/applications/maniphest/storage/ManiphestTransaction.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/applications/maniphest/storage/ManiphestTransaction.php b/src/applications/maniphest/storage/ManiphestTransaction.php index b4c1a8bb1a..d769c96831 100644 --- a/src/applications/maniphest/storage/ManiphestTransaction.php +++ b/src/applications/maniphest/storage/ManiphestTransaction.php @@ -659,8 +659,9 @@ final class ManiphestTransaction $project_phid = $new['projectPHID']; $column_phid = head($new['columnPHIDs']); return pht( - '%s moved this task to %s on the %s workboard.', + '%s moved %s to %s on the %s workboard.', $this->renderHandleLink($author_phid), + $this->renderHandleLink($object_phid), $this->renderHandleLink($column_phid), $this->renderHandleLink($project_phid)); break;