suppression des caractères html

This commit is contained in:
Michael RICOIS 2011-11-24 10:50:31 +00:00
parent ea40810f5b
commit f5c086d348

View File

@ -62,6 +62,7 @@ class ExportCSV
fputcsv($fp, $this->entete);
}
foreach ($this->list as $fields) {
$fields = array_map('htmlspecialchars_decode', $fields);
fputcsv($fp, $fields);
}
fclose($fp);