@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 two minor breadcrumb issues in Config

Summary:
Fixes T13159. Two issues here:

- When viewing a particular config setting, there's an extra "Config" crumb.
- On the page for a config group, the link to the parent group has an extra "/config/" in it.

Test Plan:
- Viewed a page for a particular setting, no longer saw an extra "Config" crumb.
- Viewed a page for a setting group, clicked parent crumb, got taken to a real page.

Reviewers: amckinley

Reviewed By: amckinley

Maniphest Tasks: T13159

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

+1 -2
-1
src/applications/config/controller/PhabricatorConfigEditController.php
··· 231 231 $box_header[] = $key; 232 232 233 233 $crumbs = $this->buildApplicationCrumbs(); 234 - $crumbs->addTextCrumb(pht('Config'), $this->getApplicationURI()); 235 234 if ($group) { 236 235 $crumbs->addTextCrumb($group->getName(), $group_uri); 237 236 }
+1 -1
src/applications/config/controller/PhabricatorConfigGroupController.php
··· 30 30 $view = $this->buildConfigBoxView($box_header, $list); 31 31 32 32 $crumbs = $this->buildApplicationCrumbs() 33 - ->addTextCrumb($group_name, $this->getApplicationURI($group_uri)) 33 + ->addTextCrumb($group_name, $group_uri) 34 34 ->addTextCrumb($options->getName()) 35 35 ->setBorder(true); 36 36