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

Show full names for attached diffs and tasks in email in Maniphest

Summary:
Ref T2217. Use `getLinkName()` instead of `getName()` so that we get, e.g.,

alincoln attached a revision: D123 Chop some logs

...instead of:

alincoln attached a revision: D123

Test Plan: Attached stuff, looked at the email, saw full object name.

Reviewers: btrahan, asherkin

Reviewed By: btrahan

CC: aran

Maniphest Tasks: T2217

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

+1 -1
+1 -1
src/applications/transactions/storage/PhabricatorApplicationTransaction.php
··· 190 190 if ($this->renderingTarget == self::TARGET_HTML) { 191 191 return $this->getHandle($phid)->renderLink(); 192 192 } else { 193 - return hsprintf('%s', $this->getHandle($phid)->getName()); 193 + return hsprintf('%s', $this->getHandle($phid)->getLinkName()); 194 194 } 195 195 } 196 196