Skip to content

Commit

Permalink
Allow anonymous LDAP binding
Browse files Browse the repository at this point in the history
fixes #9224
  • Loading branch information
lippserd committed May 22, 2015
1 parent 83a6e85 commit 250f863
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions application/forms/Config/Resource/LdapResourceForm.php
Expand Up @@ -113,16 +113,17 @@ public function createElements(array $formData)
'text',
'bind_dn',
array(
'required' => true,
'label' => $this->translate('Bind DN'),
'description' => $this->translate('The user dn to use for querying the ldap server')
'description' => $this->translate(
'The user dn to use for querying the ldap server. Leave the dn and password empty for attempting'
. ' an anonymous bind'
)
)
);
$this->addElement(
'password',
'bind_pw',
array(
'required' => true,
'renderPassword' => true,
'label' => $this->translate('Bind Password'),
'description' => $this->translate('The password to use for querying the ldap server')
Expand Down

0 comments on commit 250f863

Please sign in to comment.