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

Remedy a fatal-flavored oversight.

This commit is contained in:
epriestley 2011-07-07 16:06:27 -07:00
parent 30dbdf322d
commit a3e676b9d4

View file

@ -191,6 +191,11 @@ class PhabricatorProjectProfileController
$tasks = $query->execute();
$count = $query->getRowCount();
$phids = mpull($tasks, 'getOwnerPHID');
$phids = array_filter($phids);
$handles = id(new PhabricatorObjectHandleData($phids))
->loadHandles();
$task_views = array();
foreach ($tasks as $task) {
$view = id(new ManiphestTaskSummaryView())