Skip to content
Snippets Groups Projects
Commit 9b51422d authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Fix: Can use euro symbols into free texts

parent f43baadd
No related branches found
No related tags found
No related merge requests found
......@@ -192,7 +192,8 @@ function pdf_pagefoot(&$pdf,$outputlangs,$paramfreetext,$fromcompany,$marge_bass
'__FROM_EMAIL__' => $fromcompany->email,
'__TOTAL_TTC__' => $object->total_ttc,
'__TOTAL_HT__' => $object->total_ht,
'__TOTAL_VAT__' => $object->total_vat
'__TOTAL_VAT__' => $object->total_vat,
'€' => chr(128)
);
$newfreetext=make_substitutions($conf->global->$paramfreetext,$substitutionarray,$outputlangs,$object);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment