mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-09 06:39:33 +00:00
Column correction for email in html reports
Signed-off-by: Alex Ebadirad <aebadirad@42six.com>
This commit is contained in:
parent
4878786d89
commit
4426d46a00
@ -215,7 +215,7 @@ public class Report {
|
||||
table.append("<table><thead><tr><th>").append("Folder").append("</th><th>From</th><th>To</th><th>Subject</th><th>Date/Time</th><th>Content</th><th>CC</th><th>BCC</th><th>Path</th></tr><tbody>");
|
||||
}
|
||||
table.append("<tr><td>").append(uniqueresults.getString("name")).append("</td>");
|
||||
table.append("<td>").append(uniqueresults.getString("receiver")).append("</td>").append("<td>").append(uniqueresults.getString("author")).append("<br />(").append(uniqueresults.getString("subject")).append(")").append("</td>");
|
||||
table.append("<td>").append(uniqueresults.getString("receiver")).append("</td>").append("<td>").append(uniqueresults.getString("author")).append("</td><td>").append(uniqueresults.getString("subject")).append("</td>");
|
||||
SimpleDateFormat sdf = new java.text.SimpleDateFormat("yyyy/MM/dd HH:mm:ss");
|
||||
String value = sdf.format(new java.util.Date(uniqueresults.getLong("date") * 1000));
|
||||
table.append("<td>").append(value).append("</td>");
|
||||
|
Loading…
x
Reference in New Issue
Block a user