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

Touch up Phriction History page

Summary: Adds an ObjectBox. Fixes T4047

Test Plan: View updated Phriction History Page.

Reviewers: epriestley

Reviewed By: epriestley

CC: Korvin, epriestley, aran

Maniphest Tasks: T4047

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

+6 -3
+6 -3
src/applications/phriction/controller/PhrictionHistoryController.php
··· 151 151 array('href' => PhrictionDocument::getSlugURI($document->getSlug())), 152 152 head($history)->getTitle()))); 153 153 154 + $obj_box = id(new PHUIObjectBoxView()) 155 + ->setHeader($header) 156 + ->appendChild($list) 157 + ->appendChild($pager); 158 + 154 159 return $this->buildApplicationPage( 155 160 array( 156 161 $crumbs, 157 - $header, 158 - $list, 159 - $pager, 162 + $obj_box, 160 163 ), 161 164 array( 162 165 'title' => pht('Document History'),