Skip to content

Commit

Permalink
Fix SSL, TLS vs LDAPS, STARTTLS in the LDAP resource form
Browse files Browse the repository at this point in the history
  • Loading branch information
lippserd committed Mar 12, 2015
1 parent db08cca commit 61e01a4
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions application/forms/Config/Resource/LdapResourceForm.php
Expand Up @@ -66,12 +66,13 @@ public function createElements(array $formData)
'autosubmit' => true,
'label' => $this->translate('Connection'),
'description' => $this->translate(
'The type of connection to use. Unencrypted (Plaintext) or encrypted (SSL, TLS).'
'Whether to encrypt communication. Choose STARTTLS or LDAPS for encrypted communication or'
. ' Plaintext for unencrypted communication'
),
'multiOptions' => array(
'plaintext' => $this->translate('Plaintext'),
Connection::LDAPS => 'Secure Sockets Layer (SSL)',
Connection::STARTTLS => 'Transport Layer Security (TLS)'
Connection::LDAPS => 'LDAPS',
Connection::STARTTLS => 'STARTTLS'
)
)
);
Expand Down

0 comments on commit 61e01a4

Please sign in to comment.