diff --git a/app/views/forums/show.atom.builder b/app/views/forums/show.atom.builder index f484655..cfe80fc 100644 --- a/app/views/forums/show.atom.builder +++ b/app/views/forums/show.atom.builder @@ -2,7 +2,7 @@ atom_feed do |feed| feed.title "Latest threads in " + @forum.name feed.updated Time.now - @threads.limit(100).each do |thread| + @threads.limit(10).each do |thread| unless thread.sticky? feed.entry thread do |entry| entry.updated thread.updated_at