Do not require the `connection' directive when creating a LDAP resource

This commit is contained in:
Johannes Meyer 2015-03-12 15:36:52 +01:00
parent 7a4403f5a5
commit 8295d6d9b0
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ class Connection
$this->bind_pw = $config->bind_pw;
$this->root_dn = $config->root_dn;
$this->port = $config->get('port', $this->port);
$this->connectionType = $config->connection;
$this->connectionType = $config->get('connection');
$this->reqCert = (bool) $config->get('reqcert', $this->reqCert);
}