From a3e676b9d48291a6944ee3adfb306b30363e6e18 Mon Sep 17 00:00:00 2001 From: epriestley Date: Thu, 7 Jul 2011 16:06:27 -0700 Subject: [PATCH] Remedy a fatal-flavored oversight. --- .../profile/PhabricatorProjectProfileController.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/applications/project/controller/profile/PhabricatorProjectProfileController.php b/src/applications/project/controller/profile/PhabricatorProjectProfileController.php index 679b3b4d1d..b8931e1d61 100644 --- a/src/applications/project/controller/profile/PhabricatorProjectProfileController.php +++ b/src/applications/project/controller/profile/PhabricatorProjectProfileController.php @@ -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())