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

fix a small bug from new profile status code stuff

Summary: we need a user (the viewer in this case) for the status to render correctly with respect to timezone

Test Plan: my profile no longer fatals with an away status

Reviewers: davidreuss, vrana

CC: aran, epriestley

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

+1 -1
+1 -1
src/applications/people/controller/profile/PhabricatorPeopleProfileController.php
··· 130 130 $statuses = id(new PhabricatorUserStatus())->loadCurrentStatuses( 131 131 array($user->getPHID())); 132 132 if ($statuses) { 133 - $header->setStatus(reset($statuses)->getStatusDescription()); 133 + $header->setStatus(reset($statuses)->getStatusDescription($viewer)); 134 134 } 135 135 } 136 136