@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 initialization order so config initialization does not fatal on phlog().

+3 -3
+3 -3
src/infrastructure/env/PhabricatorEnv.php
··· 103 103 104 104 105 105 private static function initializeCommonEnvironment() { 106 - self::buildConfigurationSourceStack(); 107 - 108 106 PhutilErrorHandler::initialize(); 107 + 108 + self::buildConfigurationSourceStack(); 109 109 110 110 $tz = PhabricatorEnv::getEnvConfig('phabricator.timezone'); 111 111 if ($tz) { ··· 156 156 $stack->pushSource( 157 157 id(new PhabricatorConfigDatabaseSource('default')) 158 158 ->setName(pht("Database"))); 159 - } catch (AphrontQueryException $recoverable) { 159 + } catch (AphrontQueryException $exception) { 160 160 // If the database is not available, just skip this configuration 161 161 // source. This happens during `bin/storage upgrade`, `bin/conf` before 162 162 // schema setup, etc.