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

Make __init_env__.php load libraries specified in config.

+4
+4
scripts/__init_env__.php
··· 29 29 30 30 phutil_require_module('phabricator', 'infrastructure/env'); 31 31 PhabricatorEnv::setEnvConfig($conf); 32 + 33 + foreach (PhabricatorEnv::getEnvConfig('load-libraries') as $library) { 34 + phutil_load_library($library); 35 + }