Fix problem of accentuated char

This commit is contained in:
Dany De Bontridder 2016-12-10 17:20:24 +01:00
parent cfc1e7de81
commit 1f7c92700d

View file

@ -56,7 +56,7 @@ class IText extends HtmlInput
',$this->style,
$this->id,
$this->name,
htmlentities($this->value),
$this->value,
$this->placeholder,
$this->title,
$this->size,
@ -70,7 +70,7 @@ class IText extends HtmlInput
',$this->style,
$this->id,
$this->name,
htmlentities($this->value),
$this->value,
$this->placeholder,
$this->title,
$this->css_size,