@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 chatlog to newPage()

Summary: Just clearing these all out.

Test Plan: Visit channel list and log page.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

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

+10 -16
+5 -8
src/applications/chatlog/controller/PhabricatorChatLogChannelListController.php
··· 32 32 ->setHeaderText('Channel List') 33 33 ->setObjectList($list); 34 34 35 - return $this->buildApplicationPage( 36 - array( 37 - $crumbs, 38 - $box, 39 - ), 40 - array( 41 - 'title' => pht('Channel List'), 42 - )); 35 + return $this->newPage() 36 + ->setTitle(pht('Channel List')) 37 + ->setCrumbs($crumbs) 38 + ->appendChild($box); 39 + 43 40 } 44 41 }
+5 -8
src/applications/chatlog/controller/PhabricatorChatLogChannelLogController.php
··· 248 248 $form, 249 249 '#'); 250 250 251 - return $this->buildApplicationPage( 252 - array( 253 - $crumbs, 254 - $box, 255 - ), 256 - array( 257 - 'title' => pht('Channel Log'), 258 - )); 251 + return $this->newPage() 252 + ->setTitle(pht('Channel Log')) 253 + ->setCrumbs($crumbs) 254 + ->appendChild($box); 255 + 259 256 } 260 257 261 258 /**