@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 wrong parameter order to pht()

Summary: Part of T15862

Test Plan:
```
// NOTE: this type is deprecated. Keep it around for legacy installs
// so any transactions render correctly.
```

Probably not testable on an actual instance. Observe that it no longer causes i18n extraction warnings with the T16378 tree of patches/P60

Reviewers: O1 Blessed Committers, aklapper

Reviewed By: O1 Blessed Committers, aklapper

Subscribers: tobiaswiese, valerio.bozzolan, Matthew, Cigaryno

Differential Revision: https://we.phorge.it/D26557

Pppery 4181b307 ecc755d9

+2 -2
+2 -2
src/applications/maniphest/xaction/ManiphestTaskAttachTransaction.php
··· 62 62 return pht( 63 63 '%s attached %d file(s) of %s: %s', 64 64 $this->renderAuthor(), 65 - $this->renderObject(), 66 65 count($added), 66 + $this->renderObject(), 67 67 $this->renderHandleList($added)); 68 68 } else if ($removed && !$added) { 69 69 return pht( 70 70 '%s detached %d file(s) of %s: %s', 71 71 $this->renderAuthor(), 72 - $this->renderObject(), 73 72 count($removed), 73 + $this->renderObject(), 74 74 $this->renderHandleList($removed)); 75 75 } else { 76 76 return pht(