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

Load LDAP provider correctly in `bin/auth` LDAP debug script

Summary: Ref T1536. After DB-driven auth config, we need to load this differently.

Test Plan: Ran `bin/auth ldap`.

Reviewers: btrahan, chad

Reviewed By: chad

CC: aran

Maniphest Tasks: T1536

Differential Revision: https://secure.phabricator.com/D6287

+2 -2
+2 -2
src/applications/auth/management/PhabricatorAuthManagementLDAPWorkflow.php
··· 15 15 $console = PhutilConsole::getConsole(); 16 16 $console->getServer()->setEnableLog(true); 17 17 18 - $provider = new PhabricatorAuthProviderLDAP(); 19 - if (!$provider->isEnabled()) { 18 + $provider = PhabricatorAuthProviderLDAP::getLDAPProvider(); 19 + if (!$provider) { 20 20 $console->writeOut( 21 21 "%s\n", 22 22 "The LDAP authentication provider is not enabled.");