@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 old icon css

Summary:
Updated some old css to point at the new icon set
Fixes T5357

Test Plan: View it

Reviewers: epriestley, #blessed_reviewers

Reviewed By: epriestley, #blessed_reviewers

Subscribers: epriestley, Korvin

Maniphest Tasks: T5357

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

authored by

Gareth Evans and committed by
epriestley
f1fa8fcc 824b8108

+1 -3
+1 -3
src/applications/diffusion/controller/DiffusionHistoryController.php
··· 121 121 $request = $this->getRequest(); 122 122 if ($request->getBool('copies')) { 123 123 $branch_name = pht('Hide Copies/Branches'); 124 - $branch_icon = 'fork-grey'; 125 124 $branch_uri = $request->getRequestURI() 126 125 ->alter('offset', null) 127 126 ->alter('copies', null); 128 127 } else { 129 128 $branch_name = pht('Show Copies/Branches'); 130 - $branch_icon = 'fork'; 131 129 $branch_uri = $request->getRequestURI() 132 130 ->alter('offset', null) 133 131 ->alter('copies', true); ··· 136 134 $view->addAction( 137 135 id(new PhabricatorActionView()) 138 136 ->setName($branch_name) 139 - ->setIcon($branch_icon) 137 + ->setIcon('fa-code-fork') 140 138 ->setHref($branch_uri)); 141 139 142 140 return $view;