mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-22 18:09:06 +01:00
LSattr_html_select_list :: getPossibleValues() : Fixed notice PHPx
This commit is contained in:
parent
2d6caf2fd5
commit
4e1e16a1ec
1 changed files with 4 additions and 4 deletions
|
@ -99,10 +99,10 @@ class LSattr_html_select_list extends LSattr_html{
|
|||
}
|
||||
|
||||
$param=array(
|
||||
'filter' => $val['filter'],
|
||||
'basedn' => $val['basedn'],
|
||||
'scope' => $val['scope'],
|
||||
'displayFormat' => $val['display_name_format'],
|
||||
'filter' => (isset($val['filter'])?$val['filter']:null),
|
||||
'basedn' => (isset($val['basedn'])?$val['basedn']:null),
|
||||
'scope' => (isset($val['scope'])?$val['scope']:null),
|
||||
'displayFormat' => (isset($val['display_name_format'])?$val['display_name_format']:null),
|
||||
);
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue