mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-23 02:19:07 +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) {
|
foreach ($set as $object) {
|
||||||
$DNs[] = $object -> getDn();
|
$DNs[] = $object -> getDn();
|
||||||
}
|
}
|
||||||
if (!is_array(self :: $LSprofiles[$profile])) {
|
if (!isset(self :: $LSprofiles[$profile])) {
|
||||||
self :: $LSprofiles[$profile]=$DNs;
|
self :: $LSprofiles[$profile]=$DNs;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
|
Loading…
Reference in a new issue