[Rails] Re: will_paginate limit my RSS feeds too.. Any help ?

2009-08-15 Thread Philip Gavrilos
jhaagmans wrote: > You're using the same @posts for your rss feed as for your html. You > could use a different method for your RSS feed or you can set the > limit according to the call you're making. > > Why is the @posts = Post.all line there anyway? You could set it to > @posts_rss and send th

[Rails] Re: will_paginate limit my RSS feeds too.. Any help ?

2009-08-15 Thread jhaagmans
You're using the same @posts for your rss feed as for your html. You could use a different method for your RSS feed or you can set the limit according to the call you're making. Why is the @posts = Post.all line there anyway? You could set it to @posts_rss and send that along with your RSS feed.