From 524ad1d7cd9a9c39b3988a9acab5f341bbb8f6e3 Mon Sep 17 00:00:00 2001 From: adam-m Date: Mon, 15 Oct 2012 11:22:06 -0400 Subject: [PATCH] Strings inside XLS reports are now properly encoded --- Core/src/org/sleuthkit/autopsy/report/ReportXLS.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/src/org/sleuthkit/autopsy/report/ReportXLS.java b/Core/src/org/sleuthkit/autopsy/report/ReportXLS.java index 09e5d630f4..94e2dff384 100644 --- a/Core/src/org/sleuthkit/autopsy/report/ReportXLS.java +++ b/Core/src/org/sleuthkit/autopsy/report/ReportXLS.java @@ -366,7 +366,7 @@ public class ReportXLS implements ReportModule { value = tempatt.getValueString(); } - attributes.put(type, StringEscapeUtils.escapeXml(value)); + attributes.put(type, StringEscapeUtils.escapeCsv(value)); cc++; }