@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 bad call to getShortName()

Summary: Fixes T10212. This method was removed in D14990, but I missed a callsite.

Test Plan: Disabling blame now works nicely.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T10212

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

+1 -1
+1 -1
src/applications/diffusion/controller/DiffusionBrowseController.php
··· 1826 1826 $names = array(); 1827 1827 foreach ($blame_commits as $identifier => $commit) { 1828 1828 $author = $commit->renderAuthorShortName($handles); 1829 - $name = $commit->getShortName(); 1829 + $name = $commit->getLocalName(); 1830 1830 1831 1831 $authors[$identifier] = $author; 1832 1832 $names[$identifier] = $name;