feed item's publishing date computing fix

Closes #6374
This commit is contained in:
Serghei Mihai 2015-01-28 23:18:09 +01:00
parent 1e3b89c6e5
commit f71166848d
1 changed files with 1 additions and 1 deletions

View File

@ -124,6 +124,6 @@ class AtomView(Feed):
return self.feed_item_link_template.format(item.pk)
def item_pubdate(self, item):
return item.publication_time or item.modification_time
return item.publication_time or item.m_time
atom = AtomView()