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

Fix title for phabricator home page

Summary:
My browser was showing the url of phabricator as the title instead of the real
title. Fix it so the title set for the home page actually gets used.

Test Plan: load phabricator and see "Bacon Ice Cream for Breakfast" as the title

Reviewers: epriestley

Reviewed By: epriestley

CC: aran, Korvin, chad

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

+6 -2
+1 -1
src/applications/base/controller/PhabricatorController.php
··· 148 148 $page = $this->buildStandardPageView(); 149 149 150 150 $application = $this->getCurrentApplication(); 151 + $page->setTitle(idx($options, 'title')); 151 152 if ($application) { 152 153 $page->setApplicationName($application->getName()); 153 - $page->setTitle(idx($options, 'title')); 154 154 if ($application->getTitleGlyph()) { 155 155 $page->setGlyph($application->getTitleGlyph()); 156 156 }
+5 -1
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 + 68 72 return $this->buildApplicationPage( 69 73 $nav, 70 74 array( 71 - 'title' => 'Phabricator', 75 + 'title' => $title, 72 76 'device' => true, 73 77 )); 74 78 }