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

Fixes T10805. When clustering is not configured, this check should just return.

Auditors: chad

+5
+5
src/infrastructure/env/PhabricatorEnv.php
··· 782 782 } 783 783 784 784 public static function isClusterRemoteAddress() { 785 + $cluster_addresses = self::getEnvConfig('cluster.addresses'); 786 + if (!$cluster_addresses) { 787 + return false; 788 + } 789 + 785 790 $address = idx($_SERVER, 'REMOTE_ADDR'); 786 791 if (!$address) { 787 792 throw new Exception(