mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
Remedy a fatal-flavored oversight.
This commit is contained in:
parent
30dbdf322d
commit
a3e676b9d4
1 changed files with 5 additions and 0 deletions
|
@ -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())
|
||||
|
|
Loading…
Reference in a new issue