@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.

Fix project stories.

Summary: Fix missed %s

Test Plan: Load up feed.

Reviewers: epriestley

Reviewed By: epriestley

CC: aran, Korvin

Differential Revision: https://secure.phabricator.com/D6692

+3 -3
+3 -3
src/applications/feed/story/PhabricatorFeedStoryProject.php
··· 39 39 case PhabricatorProjectTransactionType::TYPE_NAME: 40 40 if (strlen($old)) { 41 41 $action = pht( 42 - '% renamed project %s from %s to %s.', 42 + '%s renamed project %s from %s to %s.', 43 43 $author_link, 44 44 $this->linkTo($proj_phid), 45 45 $this->renderString($old), 46 46 $this->renderString($new)); 47 47 } else { 48 48 $action = pht( 49 - '% created project %s (as %s).', 49 + '%s created project %s (as %s).', 50 50 $author_link, 51 51 $this->linkTo($proj_phid), 52 52 $this->renderString($new)); ··· 69 69 if ((count($add) == 1) && (count($rem) == 0) && 70 70 (head($add) == $author_phid)) { 71 71 $action = pht( 72 - '% joined project %s.', 72 + '%s joined project %s.', 73 73 $author_link, 74 74 $this->linkTo($proj_phid)); 75 75 } else if ((count($add) == 0) && (count($rem) == 1) &&