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

Show "Tnnn" crumb on Edit Task screen

Summary: Fixes T4198. We don't currently show "(Maniphest) > T123 > Edit" on the edit screen, which is inconsistent. Add the "T123" crumb.

Test Plan: {F87177}

Reviewers: chad, btrahan

Reviewed By: chad

CC: aran

Maniphest Tasks: T4198

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

+8
+8
src/applications/maniphest/controller/ManiphestTaskEditController.php
··· 665 665 } 666 666 667 667 $crumbs = $this->buildApplicationCrumbs(); 668 + 669 + if ($task->getID()) { 670 + $crumbs->addCrumb( 671 + id(new PhabricatorCrumbView()) 672 + ->setName('T'.$task->getID()) 673 + ->setHref('/T'.$task->getID())); 674 + } 675 + 668 676 $crumbs->addCrumb( 669 677 id(new PhabricatorCrumbView()) 670 678 ->setName($header_name));