From 2566d94cfc4f3873f07eac228d910ff3398d7c5a Mon Sep 17 00:00:00 2001 From: Florent Bruneau Date: Sun, 30 Sep 2007 15:27:31 +0200 Subject: [PATCH] Fix encoding issue in contact pdf Signed-off-by: Florent Bruneau --- modules/carnet/contacts.pdf.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/carnet/contacts.pdf.inc.php b/modules/carnet/contacts.pdf.inc.php index df02258..ceb6ca9 100644 --- a/modules/carnet/contacts.pdf.inc.php +++ b/modules/carnet/contacts.pdf.inc.php @@ -195,7 +195,7 @@ class ContactsPDF extends FPDF if (!empty($a['tels'])) { foreach ($a['tels'] as $tel) { if (!empty($tel['tel'])) { - $this->TableRow($tel['tel_type'], $tel['tel'], 'Mono'); + $this->TableRow(utf8_decode($tel['tel_type']), $tel['tel'], 'Mono'); } } } -- 2.1.4