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

Summary: clever commit summary

Test Plan: clever test plan

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

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

+3 -5
+3 -5
src/applications/uiexample/controller/PhabricatorUIExampleRenderController.php
··· 50 50 $result, 51 51 )); 52 52 53 - return $this->buildApplicationPage( 54 - $nav, 55 - array( 56 - 'title' => $example->getName(), 57 - )); 53 + return $this->newPage() 54 + ->setTitle($example->getName()) 55 + ->appendChild($nav); 58 56 } 59 57 60 58 }