@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 authors as usernames when they're linked

Summary: This data is available and loaded, just not used.

Test Plan: {F411442}

Reviewers: chad

Reviewed By: chad

Subscribers: epriestley

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

+6 -1
+6 -1
src/applications/audit/view/PhabricatorAuditListView.php
··· 142 142 $status_text = null; 143 143 $status_color = null; 144 144 } 145 - $author_name = $commit->getCommitData()->getAuthorName(); 145 + $author_phid = $commit->getAuthorPHID(); 146 + if ($author_phid) { 147 + $author_name = $this->getHandle($author_phid)->renderLink(); 148 + } else { 149 + $author_name = $commit->getCommitData()->getAuthorName(); 150 + } 146 151 147 152 $item = id(new PHUIObjectItemView()) 148 153 ->setObjectName($commit_name)