From 7f22958a8235781717f36cc42e30b32e536c9d90 Mon Sep 17 00:00:00 2001 From: epriestley Date: Thu, 15 May 2014 06:51:01 -0700 Subject: [PATCH] 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 --- .../people/controller/PhabricatorPeopleListController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/applications/people/controller/PhabricatorPeopleListController.php b/src/applications/people/controller/PhabricatorPeopleListController.php index b0db5d7f62..da3f2dd9dc 100644 --- a/src/applications/people/controller/PhabricatorPeopleListController.php +++ b/src/applications/people/controller/PhabricatorPeopleListController.php @@ -89,13 +89,13 @@ final class PhabricatorPeopleListController extends PhabricatorPeopleController if ($is_approval) { $item->addAction( id(new PHUIListItemView()) - ->setIcon('disable') + ->setIcon('fa-ban') ->setName(pht('Disable')) ->setWorkflow(true) ->setHref($this->getApplicationURI('disapprove/'.$user_id.'/'))); $item->addAction( id(new PHUIListItemView()) - ->setIcon('like') + ->setIcon('fa-thumbs-o-up') ->setName(pht('Approve')) ->setWorkflow(true) ->setHref($this->getApplicationURI('approve/'.$user_id.'/')));