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

Sell Yellow! Buy Indigo!

Summary: Fixes T12504. Replaces all tags with indigo.

Test Plan: {F4849487}

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T12504

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

+4 -4
+4 -4
src/applications/files/controller/PhabricatorFileInfoController.php
··· 41 41 $ttl = $file->getTTL(); 42 42 if ($ttl !== null) { 43 43 $ttl_tag = id(new PHUITagView()) 44 - ->setType(PHUITagView::TYPE_STATE) 45 - ->setBackgroundColor(PHUITagView::COLOR_YELLOW) 44 + ->setType(PHUITagView::TYPE_SHADE) 45 + ->setShade(PHUITagView::COLOR_YELLOW) 46 46 ->setName(pht('Temporary')); 47 47 $header->addTag($ttl_tag); 48 48 } ··· 50 50 $partial = $file->getIsPartial(); 51 51 if ($partial) { 52 52 $partial_tag = id(new PHUITagView()) 53 - ->setType(PHUITagView::TYPE_STATE) 54 - ->setBackgroundColor(PHUITagView::COLOR_ORANGE) 53 + ->setType(PHUITagView::TYPE_SHADE) 54 + ->setShade(PHUITagView::COLOR_ORANGE) 55 55 ->setName(pht('Partial Upload')); 56 56 $header->addTag($partial_tag); 57 57 }