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

Owners Results package

+6 -1
+6 -1
src/applications/owners/query/PhabricatorOwnersPackageSearchEngine.php
··· 129 129 $list->addItem($item); 130 130 } 131 131 132 - return $list; 132 + $result = new PhabricatorApplicationSearchResultView(); 133 + $result->setObjectList($list); 134 + $result->setNoDataString(pht('No packages found.')); 135 + 136 + return $result; 137 + 133 138 } 134 139 }