From 77bc72348d814a5f48ae4c394c4e61226fd7675f Mon Sep 17 00:00:00 2001 From: Regis Houssin Date: Fri, 27 Apr 2007 17:12:35 +0000 Subject: [PATCH] =?UTF-8?q?Fix:=20la=20fonction=20a=20=E9t=E9=20d=E9plac?= =?UTF-8?q?=E9e=20dans=20functions.inc.php?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../mods/pdf/pdf_expedition_rouget.modules.php | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/htdocs/expedition/mods/pdf/pdf_expedition_rouget.modules.php b/htdocs/expedition/mods/pdf/pdf_expedition_rouget.modules.php index edee135fa93..f4ef54360e4 100644 --- a/htdocs/expedition/mods/pdf/pdf_expedition_rouget.modules.php +++ b/htdocs/expedition/mods/pdf/pdf_expedition_rouget.modules.php @@ -288,18 +288,4 @@ Class pdf_expedition_rouget extends ModelePdfExpedition } } -// Cette fonction est appelée pour coder ou non une chaine en html -// selon qu'on compte l'afficher dans le PDF avec: -// writeHTMLCell -> a besoin d'etre encodé en HTML -// MultiCell -> ne doit pas etre encodé en HTML -function _dol_htmlentities($stringtoencode,$isstringalreadyhtml) -{ - global $conf; - - if ($isstringalreadyhtml) return $stringtoencode; - if ($conf->fckeditor->enabled) return htmlentities($stringtoencode); - return $stringtoencode; -} - - ?>