mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-26 11:52:59 +01:00
LSattribute :: generateValue() : Fixed bug when generated value is an array.
This commit is contained in:
parent
20b6677210
commit
aeb54731ef
1 changed files with 4 additions and 2 deletions
|
@ -482,8 +482,10 @@ class LSattribute {
|
||||||
$value = $this -> config['default_value'];
|
$value = $this -> config['default_value'];
|
||||||
}
|
}
|
||||||
if (!empty($value)) {
|
if (!empty($value)) {
|
||||||
//$this -> setValue($value); // pas nécéssaire ??
|
if (!is_array($value)) {
|
||||||
$this -> updateData=array($value);
|
$value=array($value);
|
||||||
|
}
|
||||||
|
$this -> updateData=$value;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in a new issue