Page MenuHomeDevCentral

Change Phabricator title on the homepage
Closed, ResolvedPublic

Description

Kaliiixx notes the title "Phabricator" doesn't allow to distinguish between several installations.

Event Timeline

dereckson raised the priority of this task from to Wishlist.
dereckson updated the task description. (Show Details)
dereckson added a subscriber: dereckson.
dereckson claimed this task.
diff --git a/src/applications/home/controller/PhabricatorHomeMainController.php b/src/applications/home/controller/PhabricatorHomeMainController.php
index 330aecf..05b44cc 100644
--- a/src/applications/home/controller/PhabricatorHomeMainController.php
+++ b/src/applications/home/controller/PhabricatorHomeMainController.php
@@ -54,7 +54,7 @@ final class PhabricatorHomeMainController extends PhabricatorHomeController {
     return $this->buildApplicationPage(
       $content,
       array(
-        'title' => 'Phabricator',
+        'title' => getenv('PHABRICATOR_TITLE'),
       ));
   }