List STARTTLS before LDAPS ...

... when choosing encryption for a LDAP resource.
This commit is contained in:
Eric Lippmann 2015-03-13 00:03:01 +01:00
parent 708f08302f
commit 020329d201
1 changed files with 2 additions and 2 deletions

View File

@ -71,8 +71,8 @@ class LdapResourceForm extends Form
),
'multiOptions' => array(
'plaintext' => $this->translate('Plaintext'),
Connection::LDAPS => 'LDAPS',
Connection::STARTTLS => 'STARTTLS'
Connection::STARTTLS => 'STARTTLS',
Connection::LDAPS => 'LDAPS'
)
)
);