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

Continue not fataling on legacy Maniphest queries

Summary: Ref T3817. See that task for discussion.

Auditors: btrahan

+5 -2
+5 -2
src/applications/maniphest/view/ManiphestTaskListView.php
··· 60 60 $item->setHref('/T'.$task->getID()); 61 61 62 62 if ($task->getOwnerPHID()) { 63 - $owner = $handles[$task->getOwnerPHID()]; 64 - $item->addByline(pht('Assigned: %s', $owner->renderLink())); 63 + $owner = idx($handles, $task->getOwnerPHID()); 64 + // TODO: This should be guaranteed, see T3817. 65 + if ($owner) { 66 + $item->addByline(pht('Assigned: %s', $owner->renderLink())); 67 + } 65 68 } 66 69 67 70 $status = $task->getStatus();