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

Minor, resolve a method name conflict between ManiphestController and PhabricatorController.

+2 -2
+1 -1
src/applications/base/controller/PhabricatorController.php
··· 223 223 return $this; 224 224 } 225 225 226 - protected function renderHandleList(array $phids) { 226 + protected function renderHandlesForPHIDs(array $phids) { 227 227 $items = array(); 228 228 foreach ($phids as $phid) { 229 229 $items[] = $this->getHandle($phid)->renderLink();
+1 -1
src/applications/paste/controller/PhabricatorPasteViewController.php
··· 129 129 if ($child_phids) { 130 130 $properties->addProperty( 131 131 pht('Forks'), 132 - $this->renderHandleList($child_phids)); 132 + $this->renderHandlesForPHIDs($child_phids)); 133 133 } 134 134 135 135 return $properties;