2
0
forked from Wavyzz/dolibarr

Fix: les accents n'taient pas grs

This commit is contained in:
Regis Houssin
2007-03-19 16:13:48 +00:00
parent f5bca489c6
commit 56d8c76de8
2 changed files with 2 additions and 2 deletions

View File

@@ -118,7 +118,7 @@ class ExportCsv extends ModeleExports
{
foreach($array_selected_sorted as $code => $value)
{
fwrite($this->handle,$langs->trans($array_export_fields_label[$code]).";");
fwrite($this->handle,$langs->transnoentities($array_export_fields_label[$code]).";");
}
fwrite($this->handle,"\n");
return 0;

View File

@@ -133,7 +133,7 @@ class ExportExcel extends ModeleExports
{
$alias=$array_export_fields_label[$code];
//print "dd".$alias;
$this->worksheet->write($this->row, $this->col, $langs->trans($alias));
$this->worksheet->write($this->row, $this->col, $langs->transnoentities($alias));
$this->col++;
}
$this->row++;