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

Use font icons on user approval queue

Summary: Fixes T5066.

Test Plan: {F155058}

Reviewers: chad, btrahan, shadowhand

Reviewed By: shadowhand

Subscribers: shadowhand, epriestley

Maniphest Tasks: T5066

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

+2 -2
+2 -2
src/applications/people/controller/PhabricatorPeopleListController.php
··· 89 89 if ($is_approval) { 90 90 $item->addAction( 91 91 id(new PHUIListItemView()) 92 - ->setIcon('disable') 92 + ->setIcon('fa-ban') 93 93 ->setName(pht('Disable')) 94 94 ->setWorkflow(true) 95 95 ->setHref($this->getApplicationURI('disapprove/'.$user_id.'/'))); 96 96 $item->addAction( 97 97 id(new PHUIListItemView()) 98 - ->setIcon('like') 98 + ->setIcon('fa-thumbs-o-up') 99 99 ->setName(pht('Approve')) 100 100 ->setWorkflow(true) 101 101 ->setHref($this->getApplicationURI('approve/'.$user_id.'/')));