diff options
author | Leif Johansson <leifj@sunet.se> | 2011-05-12 23:21:07 +0200 |
---|---|---|
committer | Leif Johansson <leifj@sunet.se> | 2011-05-12 23:21:07 +0200 |
commit | c73412cf74830256002790493556c3f842d013f3 (patch) | |
tree | cc09be1ebe42e23242e20643bf38aa330f8cf4c8 /src/templates/apps/room | |
parent | 525072bfd8c3781f2ced07f993caf94282995108 (diff) |
fix dates
Diffstat (limited to 'src/templates/apps/room')
-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 %} |