diff options
Diffstat (limited to 'src/templates/apps')
-rw-r--r-- | src/templates/apps/room/atom.xml | 2 | ||||
-rw-r--r-- | src/templates/apps/room/rss2.xml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/templates/apps/room/atom.xml b/src/templates/apps/room/atom.xml index 15b329c..94dee98 100644 --- a/src/templates/apps/room/atom.xml +++ b/src/templates/apps/room/atom.xml @@ -2,7 +2,7 @@ {% load prefix %} <feed xmlns="http://www.w3.org/2005/Atom"> <title>{{title}}</title> - <updated>{{date}}</updated> + <updated>{{rfc3339_date}}</updated> <link rel="self" href="{{baseurl}}/room/+{{tags}}.atom"/> <link href="{{baseurl}}/room/+{{tags}}"/> {% if rooms %} diff --git a/src/templates/apps/room/rss2.xml b/src/templates/apps/room/rss2.xml index 5a30d58..597f472 100644 --- a/src/templates/apps/room/rss2.xml +++ b/src/templates/apps/room/rss2.xml @@ -8,7 +8,7 @@ <title>{{title}}</title> <description>{{description}}</description> <!-- {{tags}} --> - <lastBuildDate>{{date}}</lastBuildDate> + <lastBuildDate>{{rfc822_date}}</lastBuildDate> <link>{{baseurl}}/room/+{{tags}}</link> <atom:link rel="self" href="{{baseurl}}/room/+{{tags}}.rss"/> {% if rooms %} |