@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 blame colors on all lines, instead of only the first affected line

Summary: Fixes T10226. I just made a mistake here when rewriting this recently.

Test Plan: {F1079166}

Reviewers: chad, avivey

Reviewed By: avivey

Maniphest Tasks: T10226

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

+3 -3
+3 -3
src/applications/diffusion/controller/DiffusionBrowseController.php
··· 1080 1080 $revision_link = null; 1081 1081 $commit_link = null; 1082 1082 $before_link = null; 1083 - $style = null; 1084 - if ($identifier && !$line['duplicate']) { 1085 - $style = 'background: '.$line['color'].';'; 1086 1083 1084 + $style = 'background: '.$line['color'].';'; 1085 + 1086 + if ($identifier && !$line['duplicate']) { 1087 1087 if (isset($commit_links[$identifier])) { 1088 1088 $commit_link = $commit_links[$identifier]; 1089 1089 }