diff --git a/classes/controller/AdminController.php b/classes/controller/AdminController.php index c7d31a588..daa5391f8 100644 --- a/classes/controller/AdminController.php +++ b/classes/controller/AdminController.php @@ -581,7 +581,7 @@ class AdminControllerCore extends Controller $headers = array(); foreach ($this->fields_list as $datas) - $headers[] = $datas['title']; + $headers[] = Tools::htmlentitiesDecodeUTF8($datas['title']); $content = array(); foreach ($this->_list as $i => $row) @@ -589,7 +589,7 @@ class AdminControllerCore extends Controller $content[$i] = array(); foreach ($this->fields_list as $key => $value) if (isset($row[$key])) - $content[$i][] = $row[$key]; + $content[$i][] = Tools::htmlentitiesDecodeUTF8($row[$key]); } $this->context->smarty->assign(array(