@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 the "password" auth default (should be enabled if not provided).

+5 -1
+5 -1
resources/sql/patches/20130619.authconf.php
··· 45 45 ), 46 46 'PhabricatorAuthProviderPassword' => array( 47 47 'enabled' => 'auth.password-auth-enabled', 48 + 'enabled-default' => true, 48 49 'registration' => false, 49 50 'type' => 'password', 50 51 'domain' => 'self', ··· 53 54 54 55 foreach ($config_map as $provider_class => $spec) { 55 56 $enabled_key = idx($spec, 'enabled'); 56 - $enabled = PhabricatorEnv::getEnvConfigIfExists($enabled_key); 57 + $enabled_default = idx($spec, 'enabled-default', false); 58 + $enabled = PhabricatorEnv::getEnvConfigIfExists( 59 + $enabled_key, 60 + $enabled_default); 57 61 58 62 if (!$enabled) { 59 63 echo pht("Skipping %s (not enabled).\n", $provider_class);