// Fix htmlentities on csv export

This commit is contained in:
Rémi Gaillard
2013-03-21 10:08:24 +01:00
parent 34743b465b
commit 37489c752c
+2 -2
View File
@@ -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(