diff --git a/modules/ldap/docs/ldap.txt b/modules/ldap/docs/ldap.txt index 946c3737d8d5d18a7633c83db7c5932800cb4eb9..0efa1fff62b3b68ba165f981d8b8e0bd577e7ca2 100644 --- a/modules/ldap/docs/ldap.txt +++ b/modules/ldap/docs/ldap.txt @@ -282,17 +282,17 @@ The filter option names have recently changed, however the old config names will converted to the new names automatically. That way any existing/older config's should still work. Below are the old config names and their new names: -array( - 'ldap_host' => 'ldap.hostname', - 'ldap_port' => 'ldap.port', - 'ldap_bind_user' => 'ldap.username', - 'ldap_bind_pwd' => 'ldap.password', - 'userid_attribute' => 'attribute.username', - 'ldap_search_base_dn' => 'ldap.basedn', - 'ldap_search_filter' => 'search.filter', - 'ldap_search_attribute' => 'search.attribute', - 'new_attribute_name' => 'attribute.new' -) + array( + 'ldap_host' => 'ldap.hostname', + 'ldap_port' => 'ldap.port', + 'ldap_bind_user' => 'ldap.username', + 'ldap_bind_pwd' => 'ldap.password', + 'userid_attribute' => 'attribute.username', + 'ldap_search_base_dn' => 'ldap.basedn', + 'ldap_search_filter' => 'search.filter', + 'ldap_search_attribute' => 'search.attribute', + 'new_attribute_name' => 'attribute.new' + ) ### Example ### @@ -305,7 +305,7 @@ the specific attribute. 'class' => 'ldapAttributeAddUsersGroups', 'authsource' => 'example-ldap', 'attribute.new' => 'my_ldap_attribute', - 'search.attribute' => 'displayName' + 'search.attribute' => 'displayName', 'search.filter' => '(uniquemember=cn=%cn%,cn=users,cn=example,dc=org)' ) @@ -320,7 +320,7 @@ required, see the config options for ldap:AttributeAddUsersGroups below. 'ldap.password' => 'Abc123', 'ldap.basedn' => 'DC=example,DC=org', 'attribute.new' => 'my_ldap_attribute', - 'search.attribute' => 'displayName' + 'search.attribute' => 'displayName', 'search.filter' => '(uniquemember=cn=%cn%,cn=users,cn=example,dc=org)' )