From 1bb2d168fa1d04e27acdca56ca1a8afdef9f2cb5 Mon Sep 17 00:00:00 2001 From: Romain Quetiez Date: Mon, 7 Sep 2015 14:27:55 +0000 Subject: [PATCH] Spreadsheet export: fix = do take the no_localize option into account SVN:trunk[3726] --- core/spreadsheetbulkexport.class.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/spreadsheetbulkexport.class.inc.php b/core/spreadsheetbulkexport.class.inc.php index bc979a1ae..ddd0e1338 100644 --- a/core/spreadsheetbulkexport.class.inc.php +++ b/core/spreadsheetbulkexport.class.inc.php @@ -213,7 +213,7 @@ class SpreadsheetBulkExport extends TabularBulkExport } else if($oAttDef instanceof AttributeString) { - $sField = $oObj->GetAsHTML($sAttCode); + $sField = $oObj->GetAsHTML($sAttCode, $this->bLocalizeOutput); $sData .= "$sField"; } else