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

Add user profile icons to Phame authorship

Summary: Huge omission.

Test Plan: {F1093955}

Reviewers: chad

Reviewed By: chad

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

+10 -1
+10 -1
src/applications/phame/controller/post/PhamePostViewController.php
··· 101 101 $subtitle = pht('Written by %s on %s.', $author, $date); 102 102 } 103 103 104 + $user_icon = $blogger_profile->getIcon(); 105 + $user_icon = PhabricatorPeopleIconSet::getIconIcon($user_icon); 106 + $user_icon = id(new PHUIIconView())->setIcon($user_icon); 107 + 104 108 $about = id(new PhameDescriptionView()) 105 109 ->setTitle($subtitle) 106 - ->setDescription($blogger_profile->getTitle()) 110 + ->setDescription( 111 + array( 112 + $user_icon, 113 + ' ', 114 + $blogger_profile->getTitle(), 115 + )) 107 116 ->setImage($blogger->getProfileImageURI()) 108 117 ->setImageHref('/p/'.$blogger->getUsername()); 109 118