From: Joe Hunt Date: Mon, 7 Jun 2010 15:07:21 +0000 (+0000) Subject: Rerun X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=commitdiff_plain;h=274cc44ef26f3f7f1e1b7cd4430f24d047b33a95;p=textcart.git Rerun --- diff --git a/reporting/includes/excel_report.inc b/reporting/includes/excel_report.inc index c95c1b2..c24c09a 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);