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

Use 'Bacon Ice Cream for Breakfast' only for untitled pages

Test Plan: /

Reviewers: nh, epriestley

Reviewed By: epriestley

CC: aran, Korvin

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

+6 -6
+5 -1
src/applications/base/controller/PhabricatorController.php
··· 147 147 public function buildApplicationPage($view, array $options) { 148 148 $page = $this->buildStandardPageView(); 149 149 150 + $title = PhabricatorEnv::getEnvConfig('phabricator.serious-business') ? 151 + 'Phabricator' : 152 + pht('Bacon Ice Cream for Breakfast'); 153 + 150 154 $application = $this->getCurrentApplication(); 151 - $page->setTitle(idx($options, 'title')); 155 + $page->setTitle(idx($options, 'title', $title)); 152 156 if ($application) { 153 157 $page->setApplicationName($application->getName()); 154 158 if ($application->getTitleGlyph()) {
+1 -5
src/applications/directory/controller/PhabricatorDirectoryMainController.php
··· 65 65 $nav->appendChild($content); 66 66 $nav->appendChild(new PhabricatorGlobalUploadTargetView()); 67 67 68 - $title = PhabricatorEnv::getEnvConfig('phabricator.serious-business') ? 69 - 'Phabricator' : 70 - pht('Bacon Ice Cream for Breakfast'); 71 - 72 68 return $this->buildApplicationPage( 73 69 $nav, 74 70 array( 75 - 'title' => $title, 71 + 'title' => 'Phabricator', 76 72 'device' => true, 77 73 )); 78 74 }