Skip to content

Commit

Permalink
Fixed dates
Browse files Browse the repository at this point in the history
  • Loading branch information
isaiahzs committed Mar 7, 2018
1 parent 8af5625 commit 537ee6a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/views/rss/autoflagged.rss.builder
Expand Up @@ -11,7 +11,7 @@ xml.rss version: '2.0' do
xml.item do
xml.title post.title
xml.description post.body
xml.pubDate post.created_at.to_s(:rfc822)
xml.pubDate post.created_at.iso8601
xml.link url_for(controller: 'posts', action: 'show', id: post.id)
xml.link url_for(controller: 'posts', action: 'show', id: post.id)
end
Expand Down
2 changes: 1 addition & 1 deletion app/views/search/search.rss.builder
Expand Up @@ -10,7 +10,7 @@ xml.rss version: '2.0' do
xml.item do
xml.title post.title
xml.description post.body
xml.pubDate post.created_at.to_s(:rfc822)
xml.pubDate post.created_at.iso8601
xml.link url_for(controller: 'posts', action: 'show', id: post.id)
xml.link url_for(controller: 'posts', action: 'show', id: post.id)
end
Expand Down

0 comments on commit 537ee6a

Please sign in to comment.