From 3053831b9777dbd8185e9313e2e903c433eca5ff Mon Sep 17 00:00:00 2001 From: Sam Date: Mon, 11 Mar 2013 18:29:13 -0700 Subject: [PATCH] don't show pinned stuff on the front page for anon --- lib/topic_query.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/topic_query.rb b/lib/topic_query.rb index 86fecc981ca..fbc54b15a32 100644 --- a/lib/topic_query.rb +++ b/lib/topic_query.rb @@ -192,7 +192,7 @@ class TopicQuery if @user_id.present? result = result.order(TopicQuery.order_nocategory_with_pinned_sql) else - result = result.order(TopicQuery.order_basic_bumped) + result = result.order(TopicQuery.order_nocategory_basic_bumped) end end