Index: app/controllers/application.rb
===================================================================
--- app/controllers/application.rb	(revision 1307)
+++ app/controllers/application.rb	(working copy)
@@ -150,6 +150,7 @@
   def render_feed(items, options={})    
     @items = items || []
     @items.sort! {|x,y| y.event_datetime <=> x.event_datetime }
+    @items = @items.slice(0, Setting.feeds_limit.to_i)
     @title = options[:title] || Setting.app_title
     render :template => "common/feed.atom.rxml", :layout => false, :content_type => 'application/atom+xml'
   end
