mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-26 16:52:41 +01:00
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
This commit is contained in:
parent
21bd596d71
commit
475afe4a5b
1 changed files with 1 additions and 1 deletions
|
@ -190,7 +190,7 @@ abstract class PhabricatorApplicationTransaction
|
|||
if ($this->renderingTarget == self::TARGET_HTML) {
|
||||
return $this->getHandle($phid)->renderLink();
|
||||
} else {
|
||||
return hsprintf('%s', $this->getHandle($phid)->getName());
|
||||
return hsprintf('%s', $this->getHandle($phid)->getLinkName());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue