mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-12-19 06:53:53 +01:00
LSauth :: getAuthObjectTypes(): fix handling simple LSobject type
This commit is contained in:
parent
8a98a6cf30
commit
e6e5f1c2b8
1 changed files with 1 additions and 1 deletions
|
@ -109,7 +109,7 @@ class LSauth extends LSlog_staticLoggerClass {
|
||||||
foreach(self :: getConfig('LSobjects', array()) as $objType => $objParams) {
|
foreach(self :: getConfig('LSobjects', array()) as $objType => $objParams) {
|
||||||
if (is_int($objType) && is_string($objParams)) {
|
if (is_int($objType) && is_string($objParams)) {
|
||||||
// We just have the object type
|
// We just have the object type
|
||||||
$objTypes[$objType] = array('filter' => null, 'password_attribute' => 'userPassword');
|
$objTypes[$objParams] = array('filter' => null, 'password_attribute' => 'userPassword');
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
$objTypes[$objType] = array(
|
$objTypes[$objType] = array(
|
||||||
|
|
Loading…
Reference in a new issue