Fix: Lines of invoice are correctly encoded

This commit is contained in:
eldy 2011-10-03 18:57:45 +02:00
parent 64aaf49fc5
commit b1ea85c504

View File

@ -458,7 +458,7 @@ class doc_generic_invoice_odt extends ModelePDFFactures
foreach($tmparray as $key => $val) foreach($tmparray as $key => $val)
{ {
try { try {
$listlines->setVars($key, $val); $listlines->setVars($key, $val, true, 'UTF-8');
} }
catch(OdfException $e) catch(OdfException $e)
{ {