From aedca03c1ff0fa59f9a07fb0368cb9a2fe0a320b Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Thu, 8 Dec 2011 20:15:56 +0100 Subject: [PATCH] Fix: Removed useless line with TCPDF --- htdocs/lib/functions.lib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/lib/functions.lib.php b/htdocs/lib/functions.lib.php index 6170443ad37..88f18b90abc 100644 --- a/htdocs/lib/functions.lib.php +++ b/htdocs/lib/functions.lib.php @@ -3575,7 +3575,7 @@ function dol_htmlentitiesbr($stringtoencode,$nl2brmode=0,$pagecodefrom='UTF-8') $newstring=dol_nl2br(dol_htmlentities($stringtoencode,ENT_COMPAT,$pagecodefrom),$nl2brmode); } // Other substitutions that htmlentities does not do - $newstring=str_replace(chr(128),'€',$newstring); // 128 = 0x80. Not in html entity table. + //$newstring=str_replace(chr(128),'€',$newstring); // 128 = 0x80. Not in html entity table. return $newstring; }