From 4dd21ab081490bde56eb842544b57db6692c7301 Mon Sep 17 00:00:00 2001 From: Joe Hunt Date: Mon, 7 Jun 2010 15:07:21 +0000 Subject: [PATCH] Rerun --- reporting/includes/excel_report.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reporting/includes/excel_report.inc b/reporting/includes/excel_report.inc index c95c1b2c..c24c09a5 100644 --- a/reporting/includes/excel_report.inc +++ b/reporting/includes/excel_report.inc @@ -522,7 +522,7 @@ class FrontReport extends Spreadsheet_Excel_Writer_Workbook function TextCol($c, $n, $txt, $corr=0, $r=0, $border=0, $fill=0, $link=NULL, $stretch=0) { - $txt = htmlspecialchars_decode($txt); + $txt = html_entity_decode($txt); if ($this->aligns[$c] == 'right') $this->sheet->writeString($this->y, $c, $txt, $this->formatRight); else @@ -556,7 +556,7 @@ class FrontReport extends Spreadsheet_Excel_Writer_Workbook function TextCol2($c, $n, $txt, $corr=0, $r=0, $border=0, $fill=0, $link=NULL, $stretch=0) { - $txt = htmlspecialchars_decode($txt); + $txt = html_entity_decode($txt); $this->sheet->writeString($this->y, $c, $txt, $this->formatLeft); if ($n - $c > 1) $this->sheet->mergeCells($this->y, $c, $this->y, $n - 1); -- 2.30.2