summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/controllers/rss_controller.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/app/controllers/rss_controller.rb b/app/controllers/rss_controller.rb
index e749449..8d4fca9 100644
--- a/app/controllers/rss_controller.rb
+++ b/app/controllers/rss_controller.rb
@@ -3,7 +3,9 @@ class RssController < ApplicationController
3 before_filter :authenticate, :only => :recent_changes 3 before_filter :authenticate, :only => :recent_changes
4 before_filter :get_host 4 before_filter :get_host
5 5
6 def updates 6 def updates
7 expires_in 31.minutes, :public => true
8
7 @items = Page.heads.find_tagged_with( 9 @items = Page.heads.find_tagged_with(
8 "update", 10 "update",
9 :order => "published_at DESC", 11 :order => "published_at DESC",