mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-22 18:09:06 +01:00
LSformElement :: isMultiple() : Fixed notice PHP
This commit is contained in:
parent
4e1e16a1ec
commit
274ad11e6d
1 changed files with 1 additions and 1 deletions
|
@ -252,7 +252,7 @@ class LSformElement {
|
|||
* @retval boolean True si le champ est à valeur multiple, False sinon
|
||||
*/
|
||||
function isMultiple() {
|
||||
return ($this -> params['multiple'] == true);
|
||||
return ( (isset($this -> params['multiple']))?($this -> params['multiple'] == true):false );
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue