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

Summary: Little straggler here, updates to `newPage`

Test Plan: Review a document, no visibile changes

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

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

+5 -7
+5 -7
src/applications/phriction/controller/PhrictionDocumentController.php
··· 230 230 $core_content, 231 231 )); 232 232 233 - return $this->buildApplicationPage( 234 - array( 235 - $crumbs->render(), 233 + return $this->newPage() 234 + ->setTitle($page_title) 235 + ->setCrumbs($crumbs) 236 + ->setPageObjectPHIDs(array($document->getPHID())) 237 + ->appendChild(array( 236 238 $page_content, 237 239 $prop_list, 238 240 $children, 239 - ), 240 - array( 241 - 'pageObjects' => array($document->getPHID()), 242 - 'title' => $page_title, 243 241 )); 244 242 245 243 }