@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, fix an issue with some older navs.

+4 -1
+4 -1
src/view/layout/AphrontSideNavFilterView.php
··· 83 83 $uri = null) { 84 84 85 85 $item = id(new PhabricatorMenuItemView()) 86 - ->setKey(strlen($key) ? $key : null) 87 86 ->setName($name); 87 + 88 + if (strlen($key)) { 89 + $item->setKey($key); 90 + } 88 91 89 92 if ($uri) { 90 93 $item->setHref($uri);