From: Tom Hughes Date: Sat, 14 Jan 2012 13:36:49 +0000 (+0000) Subject: Increase the size of the diary RSS feed temporarily X-Git-Tag: live~5926 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/ccd7882bcfdda436e1b89422a96026ce328c261b Increase the size of the diary RSS feed temporarily --- diff --git a/app/controllers/diary_entry_controller.rb b/app/controllers/diary_entry_controller.rb index ff1976a82..61194f655 100644 --- a/app/controllers/diary_entry_controller.rb +++ b/app/controllers/diary_entry_controller.rb @@ -140,7 +140,7 @@ class DiaryEntryController < ApplicationController end def rss - @entries = DiaryEntry.includes(:user).order("created_at DESC").limit(20) + @entries = DiaryEntry.includes(:user).order("created_at DESC").limit(500) if params[:display_name] user = User.active.find_by_display_name(params[:display_name])