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

Make membership lock/unlock feed stories read more naturally

Summary: Ref T12732. This is pre-existing.

Test Plan: {F4967438}

Reviewers: chad, amckinley

Reviewed By: chad

Maniphest Tasks: T12732

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

+2 -2
+2 -2
src/applications/project/storage/PhabricatorProjectTransaction.php
··· 209 209 case self::TYPE_LOCKED: 210 210 if ($new) { 211 211 return pht( 212 - '%s locked %s membership.', 212 + '%s locked membership for %s.', 213 213 $author_handle, 214 214 $object_handle); 215 215 } else { 216 216 return pht( 217 - '%s unlocked %s membership.', 217 + '%s unlocked membership for %s.', 218 218 $author_handle, 219 219 $object_handle); 220 220 }