1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 09:18:48 +02:00

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
This commit is contained in:
epriestley 2013-02-18 11:44:42 -08:00
parent 61c26463bc
commit 50efcf1043

View file

@ -57,12 +57,16 @@ final class ManiphestReportController extends ManiphestController {
}
$nav->appendChild($core);
$base_nav->appendChild($nav);
$nav->setCrumbs(
$this->buildApplicationCrumbs()
->addCrumb(
id(new PhabricatorCrumbView())
->setName(pht('Reports'))));
return $this->buildStandardPageResponse(
$base_nav,
$nav,
array(
'title' => 'Maniphest Reports',
'title' => pht('Maniphest Reports'),
));
}