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

Add border to crumbs in misc apps

Summary: Test Diviner, Chatlog

Test Plan: Test Diviner, Chatlog

Reviewers: btrahan, epriestley

Reviewed By: epriestley

Subscribers: Korvin, epriestley

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

+3
+1
src/applications/chatlog/controller/PhabricatorChatLogChannelLogController.php
··· 191 191 192 192 $crumbs = $this 193 193 ->buildApplicationCrumbs() 194 + ->setBorder(true) 194 195 ->addTextCrumb($channel->getChannelName(), $uri); 195 196 196 197 $form = id(new AphrontFormView())
+1
src/applications/diviner/controller/DivinerBookController.php
··· 26 26 } 27 27 28 28 $crumbs = $this->buildApplicationCrumbs(); 29 + $crumbs->setBorder(true); 29 30 30 31 $crumbs->addTextCrumb( 31 32 $book->getShortTitle(),
+1
src/applications/diviner/controller/DivinerMainController.php
··· 15 15 ->execute(); 16 16 17 17 $crumbs = $this->buildApplicationCrumbs(); 18 + $crumbs->setBorder(true); 18 19 $crumbs->addTextCrumb(pht('Books')); 19 20 20 21 $search_icon = id(new PHUIIconView())