Details
-
Bug
-
Resolution: Won't Do
-
Major
-
None
-
None
-
None
-
None
-
-
Empty show more show less
Description
The elements <pubDate> and <dc:date> are not being rendered into the RSS Feed - because there happens a READ to a property that doesnt exist - e.g. for an "event".
PageSyndicator.java, Line 158
if (content.getNodeData("pubDate").getDate() != null) ...
but there is no "pubDate" for an event or an article - this seems to be old code, we use this now:
if (content.getMetaData().getLastActionDate() != null) { ...
But we dont know, whether this is a real solution - but it seems to work.
Checklists
Acceptance criteria