@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 date to author panel in Maniphest

Summary: Adds a date with the author name on the Authored By panel in Maniphest. A basic treatment, will see how it feels.

Test Plan: Look at a few tasks

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

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

+2
+2
src/applications/maniphest/controller/ManiphestTaskDetailController.php
··· 244 244 $author_href = $handles[$author_phid]->getURI(); 245 245 $author = $viewer->renderHandle($author_phid)->render(); 246 246 $content = phutil_tag('strong', array(), $author); 247 + $date = phabricator_date($task->getDateCreated(), $viewer); 248 + $content = pht('%s, %s', $content, $date); 247 249 $authored_by = id(new PHUIHeadThingView()) 248 250 ->setImage($author_uri) 249 251 ->setImageHref($author_href)