@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, use self:: instead of static:: for PHP 5.2 compatibility. See https://github.com/facebook/phabricator/issues/133

+1 -1
+1 -1
src/applications/search/engine/PhabricatorJumpNavHandler.php
··· 66 66 return id(new AphrontRedirectResponse()) 67 67 ->setURI('/p/'.$matches[1].'/'); 68 68 case 'project': 69 - $project = static::findCloselyNamedProject($matches[1]); 69 + $project = self::findCloselyNamedProject($matches[1]); 70 70 if ($project) { 71 71 return id(new AphrontRedirectResponse()) 72 72 ->setURI('/project/view/'.$project->getID().'/');