mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-18 00:09:06 +01:00
LSsearch: fix PHP warning
This commit is contained in:
parent
e6e5f1c2b8
commit
047d6f51c8
1 changed files with 1 additions and 1 deletions
|
@ -144,7 +144,7 @@ class LSsearch {
|
|||
* @retval boolean True on success or False
|
||||
*/
|
||||
private function loadDefaultParameters() {
|
||||
if (is_array($this -> config['params'])) {
|
||||
if (isset($this -> config['params']) && is_array($this -> config['params'])) {
|
||||
return $this -> setParams($this -> config['params']);
|
||||
}
|
||||
return true;
|
||||
|
|
Loading…
Reference in a new issue