Bug : IDate readonly does not contain the ID

This commit is contained in:
Dany De Bontridder 2018-02-22 20:39:44 +01:00
parent 72a32bd124
commit 8ea794a436

View file

@ -94,9 +94,9 @@ class IDate extends HtmlInput
public function display()
{
$r="<span> : ".$this->value;
$r="<span> ".$this->value;
$r.='<input type="hidden" name="'.$this->name.'"'.
'id="'.$this->name.'"'.
'id="'.$this->id.'"'.
' value = "'.$this->value.'"></span>';
return $r;
}