Skip to content

Commit

Permalink
"this ain't JS"
Browse files Browse the repository at this point in the history
  • Loading branch information
Dennis Schubert committed Dec 14, 2014
1 parent 311436e commit 09aaad0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/views/blog/feed.atom.builder
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ atom_feed do |feed|
feed.title(t 'pages.blog.headline')
feed.updated(@blogposts.first.updated_at)

for blogpost in @blogposts
@blogposts.each do |blogpost|
feed.entry(blogpost, :url => blog_url(blogpost)) do |entry|
entry.title(blogpost.title)

Expand Down
2 changes: 1 addition & 1 deletion app/views/planet/feed.atom.builder
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ atom_feed do |feed|
feed.title(t 'pages.planet.headline')
feed.updated(@entries.first.updated_at)

for entry in @entries
@entries.each do |entry|
feed.entry(entry, :url => entry.url) do |feeditem|
feeditem.title(entry.title)

Expand Down

0 comments on commit 09aaad0

Please sign in to comment.