Strings inside XLS reports are now properly encoded

This commit is contained in:
adam-m 2012-10-15 11:22:06 -04:00
parent 9932c0eac0
commit 524ad1d7cd

View File

@ -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++;
}