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

Don't link commit uri in Crumbs

Summary: These are not needed I think? and handy for cut and paste. Fixes T7628

Test Plan: cut and paste easier from commit hash.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

Maniphest Tasks: T7628

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

+2 -3
+2 -3
src/applications/diffusion/controller/DiffusionController.php
··· 147 147 $crumb_list[] = $crumb; 148 148 149 149 $stable_commit = $drequest->getStableCommit(); 150 - $commit_name = $repository->formatCommitName($stable_commit); 150 + $commit_name = $repository->formatCommitName($stable_commit, $local = true); 151 151 $commit_uri = $repository->getCommitURI($stable_commit); 152 152 153 153 if ($spec['tags']) { ··· 171 171 172 172 if ($spec['commit']) { 173 173 $crumb = id(new PHUICrumbView()) 174 - ->setName($commit_name) 175 - ->setHref($commit_uri); 174 + ->setName($commit_name); 176 175 $crumb_list[] = $crumb; 177 176 return $crumb_list; 178 177 }