1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-18 12:52:42 +01:00

Be more explicit about PHID sourcing in PhabricatorObjectSelectorDialog

This commit is contained in:
epriestley 2011-04-14 18:36:18 -07:00
parent acd1cc8d22
commit 927407c426

View file

@ -135,7 +135,8 @@ class PhabricatorObjectSelectorDialog {
}
$handle_views = array();
foreach ($this->handles as $phid => $handle) {
foreach ($this->handles as $handle) {
$phid = $handle->getPHID();
$view = new PhabricatorHandleObjectSelectorDataView($handle);
$handle_views[$phid] = $view->renderData();
}