1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 01:08:50 +02:00

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
This commit is contained in:
Korvin Szanto 2013-05-12 18:38:51 -07:00 committed by epriestley
parent 8ab4b88504
commit 98e2ad4ebc

View file

@ -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;
}