@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, make side nav filter view get trailing slashes correct regardless of input.

+1 -1
+1 -1
src/view/layout/AphrontSideNavFilterView.php
··· 193 193 194 194 if (empty($item['uri'])) { 195 195 $href = clone $this->baseURI; 196 - $href->setPath($href->getPath().$key.'/'); 196 + $href->setPath(rtrim($href->getPath().$key, '/').'/'); 197 197 $href = (string)$href; 198 198 } else { 199 199 if (empty($item['relative'])) {