mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-18 08:19:05 +01:00
LSsearchEntry :: __get(): fix attributes value access
This commit is contained in:
parent
69eaf31598
commit
2ed985324e
1 changed files with 1 additions and 1 deletions
|
@ -233,7 +233,7 @@ class LSsearchEntry extends LSlog_staticLoggerClass {
|
||||||
$this -> cache[$key] = $ret;
|
$this -> cache[$key] = $ret;
|
||||||
return $ret;
|
return $ret;
|
||||||
}
|
}
|
||||||
elseif (in_array($key,array_keys($this -> attrs_list))) {
|
elseif (in_array($key, $this -> attrs_list)) {
|
||||||
return (isset($this -> attrs[$key])?$this -> attrs[$key]:null);
|
return (isset($this -> attrs[$key])?$this -> attrs[$key]:null);
|
||||||
}
|
}
|
||||||
elseif (array_key_exists($key,$this->params['customInfos'])) {
|
elseif (array_key_exists($key,$this->params['customInfos'])) {
|
||||||
|
|
Loading…
Reference in a new issue