aboutsummaryrefslogtreecommitdiffstats
path: root/app/controllers/refinery/blog/posts_controller.rb
diff options
context:
space:
mode:
authorMarek Labos <keraml@gmail.com>2012-08-29 20:53:27 +0200
committerPhilip Arndt <parndt@gmail.com>2012-11-23 09:37:15 +1300
commitf6dbe316f9f793369029db51efe695ec9766c6c1 (patch)
treefb6f89e370a83b814be3083e037f4ad6c4d3cbfb /app/controllers/refinery/blog/posts_controller.rb
parente4901f37829cd0769d48c118214f87c2c6f035ac (diff)
downloadrefinerycms-blog-f6dbe316f9f793369029db51efe695ec9766c6c1.tar.gz
refinerycms-blog-f6dbe316f9f793369029db51efe695ec9766c6c1.tar.bz2
refinerycms-blog-f6dbe316f9f793369029db51efe695ec9766c6c1.zip
Fix bugs with globalize, published_before and clean code
Fixes #276
Diffstat (limited to 'app/controllers/refinery/blog/posts_controller.rb')
-rw-r--r--app/controllers/refinery/blog/posts_controller.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/controllers/refinery/blog/posts_controller.rb b/app/controllers/refinery/blog/posts_controller.rb
index ed94a8d..b5caa33 100644
--- a/app/controllers/refinery/blog/posts_controller.rb
+++ b/app/controllers/refinery/blog/posts_controller.rb
@@ -10,7 +10,7 @@ module Refinery
def index
# Rss feeders are greedy. Let's give them every blog post instead of paginating.
- (@posts = Post.live.includes(:comments, :categories).with_globalize) if request.format.rss?
+ (@posts = Post.live.includes(:comments, :categories)) if request.format.rss?
respond_with (@posts) do |format|
format.html
format.rss { render :layout => false }
@@ -71,7 +71,7 @@ module Refinery
def tagged
@tag = ActsAsTaggableOn::Tag.find(params[:tag_id])
@tag_name = @tag.name
- @posts = Post.tagged_with(@tag_name).with_globalize.page(params[:page])
+ @posts = Post.live.tagged_with(@tag_name).page(params[:page])
end
protected