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

Don't fatal after failing to load grouped projects in Maniphest

Summary: Fixes T3817. This junk is getting wiped out soon so I'm punting here
and fixing the symptom rather than the root cause.

Auditors: btrahan

+4 -1
+4 -1
src/applications/maniphest/controller/ManiphestTaskListController.php
··· 633 633 $grouped = array(); 634 634 foreach ($query->getGroupByProjectResults() as $project => $tasks) { 635 635 foreach ($tasks as $task) { 636 - $group = $project ? $handles[$project]->getName() : 'No Project'; 636 + $group = 'No Project'; 637 + if ($project && isset($handles[$project])) { 638 + $group = $handles[$project]->getName(); 639 + } 637 640 $grouped[$group][$task->getID()] = $task; 638 641 } 639 642 }