Skip to content
Snippets Groups Projects
Commit be27563d authored by Jaime Pérez Crespo's avatar Jaime Pérez Crespo
Browse files

Fix typos in ldap module documentation.

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@3374 44740490-163a-0410-bde0-09ae8108e29a
parent e8799056
No related branches found
No related tags found
No related merge requests found
...@@ -277,10 +277,10 @@ style is deprecated now and will be removed in 2.0. ...@@ -277,10 +277,10 @@ style is deprecated now and will be removed in 2.0.
This is the most basic configuration possible. It will look at the This is the most basic configuration possible. It will look at the
authsource for all LDAP connection information and queries LDAP for authsource for all LDAP connection information and queries LDAP for
the specific attribute. the specific attributes requested.
50 => array( 50 => array(
'class' => 'ldap:AttributeAddUsersGroups', 'class' => 'ldap:AttributeAddFromLDAP',
'authsource' => 'example-ldap', 'authsource' => 'example-ldap',
'attributes' => array('displayName' => 'cn', 'jpegPhoto'), 'attributes' => array('displayName' => 'cn', 'jpegPhoto'),
'search.filter' => '(uid=%uid%)', 'search.filter' => '(uid=%uid%)',
...@@ -288,10 +288,10 @@ the specific attribute. ...@@ -288,10 +288,10 @@ the specific attribute.
If no authsource is available then you can specify the connection info If no authsource is available then you can specify the connection info
using the filter configuration. Note: Not all of the options below are using the filter configuration. Note: Not all of the options below are
required, see the config options for ldap:AttributeAddUsersGroups below. required, see the config options for ldap:AttributeAddFromLDAP above.
50 => array( 50 => array(
'class' => 'ldap:AttributeAddUsersGroups', 'class' => 'ldap:AttributeAddFromLDAP',
'ldap.hostname' => 'ldap.example.org', 'ldap.hostname' => 'ldap.example.org',
'ldap.username' => 'CN=LDAP User,CN=Users,DC=example,DC=org', 'ldap.username' => 'CN=LDAP User,CN=Users,DC=example,DC=org',
'ldap.password' => 'Abc123', 'ldap.password' => 'Abc123',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment