From 482784b9b22ccef922cba8046065ccd82db0a13a Mon Sep 17 00:00:00 2001 From: Bob Trahan Date: Fri, 29 Aug 2014 14:40:16 -0700 Subject: [PATCH] Flag - fix purple flag Summary: purple != violet, and in our CSS we call these things by the fanciest of terms. Fixes T5995. Test Plan: flagged something purple and saw that the "remove purple flag" flag was indeed purple. quickly tested other colors and they all seem good too. Reviewers: epriestley, chad Reviewed By: chad Subscribers: epriestley, Korvin Maniphest Tasks: T5995 Differential Revision: https://secure.phabricator.com/D10389 --- src/applications/flag/constants/PhabricatorFlagColor.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/applications/flag/constants/PhabricatorFlagColor.php b/src/applications/flag/constants/PhabricatorFlagColor.php index 03de39887c..a5b10292b7 100644 --- a/src/applications/flag/constants/PhabricatorFlagColor.php +++ b/src/applications/flag/constants/PhabricatorFlagColor.php @@ -40,7 +40,7 @@ final class PhabricatorFlagColor extends PhabricatorFlagConstants { self::COLOR_GREEN => 'fa-flag green', self::COLOR_BLUE => 'fa-flag blue', self::COLOR_PINK => 'fa-flag indigo', // whhaaaa - self::COLOR_PURPLE => 'fa-flag purple', + self::COLOR_PURPLE => 'fa-flag violet', self::COLOR_CHECKERED => 'fa-flag-checkered', ); return idx($map, $color);