From 1f7c92700ddbe8293a8537a8153cbcb8c4ba2b4e Mon Sep 17 00:00:00 2001 From: Dany De Bontridder Date: Sat, 10 Dec 2016 17:20:24 +0100 Subject: [PATCH] Fix problem of accentuated char --- include/lib/class_itext.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/lib/class_itext.php b/include/lib/class_itext.php index f0198734a..de639efeb 100644 --- a/include/lib/class_itext.php +++ b/include/lib/class_itext.php @@ -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,