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

Properly set project icon in timeline

Summary: This fixes a bug where the icon won't display since it doesn't include `fa-`.

Test Plan: Change icon on a project, revisit timeline and see icon.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

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

+1 -1
+1 -1
src/applications/project/storage/PhabricatorProjectTransaction.php
··· 126 126 return 'fa-unlock'; 127 127 } 128 128 case self::TYPE_ICON: 129 - return $new; 129 + return 'fa-'.$new; 130 130 case self::TYPE_IMAGE: 131 131 return 'fa-photo'; 132 132 case self::TYPE_MEMBERS: