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

Update Feed Story page for newPage

Summary: Cleans up Feed Story individual page

Test Plan: View an individual story by clicking on date.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

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

+4 -10
+4 -10
src/applications/feed/controller/PhabricatorFeedDetailController.php
··· 26 26 27 27 $title = pht('Story'); 28 28 29 - $feed_view = phutil_tag_div('phabricator-feed-frame', $feed_view); 30 - 31 29 $crumbs = $this->buildApplicationCrumbs(); 32 30 $crumbs->addTextCrumb($title); 33 31 34 - return $this->buildApplicationPage( 35 - array( 36 - $crumbs, 37 - $feed_view, 38 - ), 39 - array( 40 - 'title' => $title, 41 - )); 32 + return $this->newPage() 33 + ->setTitle($title) 34 + ->setCrumbs($crumbs) 35 + ->appendChild($feed_view); 42 36 } 43 37 44 38 }