Revision: 2188
Author: olavmrk
Date: Mon Feb 22 05:02:01 2010
Log: Add SASL to LDAPMulti.
Patch by Emmanuel Dreyfus <[email protected]>.
http://code.google.com/p/simplesamlphp/source/detail?r=2188
Modified:
/trunk/modules/ldap/lib/Auth/Source/LDAPMulti.php
=======================================
--- /trunk/modules/ldap/lib/Auth/Source/LDAPMulti.php Tue Mar 17 01:05:15
2009
+++ /trunk/modules/ldap/lib/Auth/Source/LDAPMulti.php Mon Feb 22 05:02:01
2010
@@ -89,7 +89,7 @@
* @param string $org The organization the user chose.
* @return array Associative array with the users attributes.
*/
- protected function login($username, $password, $org) {
+ protected function login($username, $password, $org, array $sasl_args =
NULL) {
assert('is_string($username)');
assert('is_string($password)');
assert('is_string($org)');
@@ -106,7 +106,7 @@
$username = $username . '@' . $org;
}
- return $this->ldapOrgs[$org]->login($username, $password);
+ return $this->ldapOrgs[$org]->login($username, $password,
$sasl_args);
}
--
You received this message because you are subscribed to the Google Groups
"simpleSAMLphp commits" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/simplesamlphp-commits?hl=en.