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

Be more explicit about PHID sourcing in PhabricatorObjectSelectorDialog

+2 -1
+2 -1
src/view/control/objectselector/PhabricatorObjectSelectorDialog.php
··· 135 135 } 136 136 137 137 $handle_views = array(); 138 - foreach ($this->handles as $phid => $handle) { 138 + foreach ($this->handles as $handle) { 139 + $phid = $handle->getPHID(); 139 140 $view = new PhabricatorHandleObjectSelectorDataView($handle); 140 141 $handle_views[$phid] = $view->renderData(); 141 142 }