mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-22 18:09:06 +01:00
LSsession :: loadLSprofilesLSobjects(): fix a PHP warning
This commit is contained in:
parent
a49cf4ba0c
commit
ab922356c0
1 changed files with 1 additions and 1 deletions
|
@ -1830,7 +1830,7 @@ class LSsession {
|
|||
foreach ($set as $object) {
|
||||
$DNs[] = $object -> getDn();
|
||||
}
|
||||
if (!is_array(self :: $LSprofiles[$profile])) {
|
||||
if (!isset(self :: $LSprofiles[$profile])) {
|
||||
self :: $LSprofiles[$profile]=$DNs;
|
||||
}
|
||||
else {
|
||||
|
|
Loading…
Reference in a new issue