Commit ca1a3dc5 by Tuomas Riihimäki

Fix calendar -> date

1 parent 4b17f255
...@@ -128,7 +128,7 @@ public class UserCartView extends GenericCDIView { ...@@ -128,7 +128,7 @@ public class UserCartView extends GenericCDIView {
} }
sb.append(CSV_SEPARATOR); sb.append(CSV_SEPARATOR);
if (uc.getCreated() != null) { if (uc.getCreated() != null) {
sb.append(createtimeFormat.format(uc.getCreated())); sb.append(createtimeFormat.format(uc.getCreated().getTime()));
} }
sb.append(CSV_SEPARATOR); sb.append(CSV_SEPARATOR);
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!