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

Add commit id to header in Diffusion

Summary: Also adds the commit to the header underneath the title. Ref T7628

Test Plan: Review a few Diffusion pages.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

Maniphest Tasks: T7628

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

+2 -3
+2 -3
src/applications/diffusion/controller/DiffusionCommitController.php
··· 92 92 $engine = PhabricatorMarkupEngine::newDifferentialMarkupEngine(); 93 93 $engine->setConfig('viewer', $user); 94 94 95 - require_celerity_resource('phabricator-remarkup-css'); 96 - 97 95 $headsup_view = id(new PHUIHeaderView()) 98 - ->setHeader(nonempty($commit->getSummary(), pht('Commit Detail'))); 96 + ->setHeader(nonempty($commit->getSummary(), pht('Commit Detail'))) 97 + ->setSubheader(pht('Commit: %s', $commit->getCommitIdentifier())); 99 98 100 99 $headsup_actions = $this->renderHeadsupActionList($commit, $repository); 101 100