From 98e2ad4ebc242e85bd8b2dae29981df3e373fb63 Mon Sep 17 00:00:00 2001 From: Korvin Szanto Date: Sun, 12 May 2013 18:38:51 -0700 Subject: [PATCH] Add a space so that the feed doesn't say "the documentDocumentName" Summary: Added a space in between "document" and "DocumentName" Test Plan: Edit a document Reviewers: epriestley Reviewed By: epriestley CC: aran Differential Revision: https://secure.phabricator.com/D5909 --- src/applications/feed/story/PhabricatorFeedStoryPhriction.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/applications/feed/story/PhabricatorFeedStoryPhriction.php b/src/applications/feed/story/PhabricatorFeedStoryPhriction.php index a91c4acd33..311d61607c 100644 --- a/src/applications/feed/story/PhabricatorFeedStoryPhriction.php +++ b/src/applications/feed/story/PhabricatorFeedStoryPhriction.php @@ -83,7 +83,7 @@ final class PhabricatorFeedStoryPhriction extends PhabricatorFeedStory { $verb = PhrictionActionConstants::getActionPastTenseVerb($action); $text = "{$author_name} {$verb} the document". - "{$document_title} {$document_uri}"; + " {$document_title} {$document_uri}"; return $text; }