mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-25 13:44:06 -08:00
Temp fix for blank LDAP values when LDAP is disabled
This commit is contained in:
parent
886b6dd265
commit
8313a069bf
|
@ -81,7 +81,7 @@ class LdapAdConfiguration
|
|||
return boolval($item);
|
||||
}
|
||||
// Decrypt the admin password
|
||||
if ('ldap_pword' === $key) {
|
||||
if (('ldap_pword' === $key) && ($item!='')) {
|
||||
try {
|
||||
return decrypt($item);
|
||||
} catch (Exception $e) {
|
||||
|
@ -236,10 +236,13 @@ class LdapAdConfiguration
|
|||
})->toArray();
|
||||
}
|
||||
|
||||
if ($this->ldapSettings['ldap_server']) {
|
||||
$parts = explode('//', $this->ldapSettings['ldap_server']);
|
||||
|
||||
return [
|
||||
$parts[1],
|
||||
];
|
||||
}
|
||||
|
||||
return [];
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue