@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 double nav on Maniphest reports

Summary: Fixes T2311.

Test Plan: {F33161}

Reviewers: chad

Reviewed By: chad

CC: aran

Maniphest Tasks: T2311

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

+7 -3
+7 -3
src/applications/maniphest/controller/ManiphestReportController.php
··· 57 57 } 58 58 59 59 $nav->appendChild($core); 60 - $base_nav->appendChild($nav); 60 + $nav->setCrumbs( 61 + $this->buildApplicationCrumbs() 62 + ->addCrumb( 63 + id(new PhabricatorCrumbView()) 64 + ->setName(pht('Reports')))); 61 65 62 66 return $this->buildStandardPageResponse( 63 - $base_nav, 67 + $nav, 64 68 array( 65 - 'title' => 'Maniphest Reports', 69 + 'title' => pht('Maniphest Reports'), 66 70 )); 67 71 } 68 72