From ab7bf3c5d4f38b8de89c9f5fa7ff05f82119b9e0 Mon Sep 17 00:00:00 2001 From: Brady Wetherington Date: Mon, 7 Mar 2022 20:22:23 -0800 Subject: [PATCH] Get rid of stale commented-out line --- app/Console/Commands/LdapTroubleshooter.php | 1 - 1 file changed, 1 deletion(-) diff --git a/app/Console/Commands/LdapTroubleshooter.php b/app/Console/Commands/LdapTroubleshooter.php index ee6d6fea7b..0c74ef5707 100644 --- a/app/Console/Commands/LdapTroubleshooter.php +++ b/app/Console/Commands/LdapTroubleshooter.php @@ -220,7 +220,6 @@ class LdapTroubleshooter extends Command $ldap_urls = []; $pretty_ldap_urls = []; foreach($open_ports as $port) { - //if($port == 389) { continue; } // FIXME GET RID OF THIS LINE! THIS SUCKS!!!!!! $this->line("Trying TLS first for port $port"); $ldap_url = "ldaps://".$parsed['host'].":$port"; if($this->test_anonymous_bind($ldap_url)) {