@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 PhortuneProviderAction to newPage

Summary: Updates to `newPage`

Test Plan: Unsure what specifically to test? Couldn't find where it's called.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

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

+6 -5
+6 -5
src/applications/phortune/controller/PhortuneProviderActionController.php
··· 39 39 return $response; 40 40 } 41 41 42 - return $this->buildApplicationPage( 43 - $response, 44 - array( 45 - 'title' => pht('Phortune'), 46 - )); 42 + $title = pht('Phortune'); 43 + 44 + return $this->newPage() 45 + ->setTitle($title) 46 + ->appendChild($response); 47 + 47 48 } 48 49 49 50