@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 Tokens for newPage

Summary: Minor, moves to `newPage`

Test Plan: Test both pages, still work

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

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

+8 -11
+4 -6
src/applications/tokens/controller/PhabricatorTokenGivenController.php
··· 71 71 $nav->appendChild($box); 72 72 $nav->appendChild($pager); 73 73 74 - return $this->buildApplicationPage( 75 - $nav, 76 - array( 77 - 'title' => $title, 78 - )); 79 - } 74 + return $this->newPage() 75 + ->setTitle($title) 76 + ->appendChild($nav); 80 77 78 + } 81 79 82 80 }
+4 -5
src/applications/tokens/controller/PhabricatorTokenLeaderController.php
··· 55 55 $nav->appendChild($box); 56 56 $nav->appendChild($pager); 57 57 58 - return $this->buildApplicationPage( 59 - $nav, 60 - array( 61 - 'title' => $title, 62 - )); 58 + return $this->newPage() 59 + ->setTitle($title) 60 + ->appendChild($nav); 61 + 63 62 } 64 63 65 64 }