Render category descriptions differently on the categories page

This commit is contained in:
Neil Lalonde
2013-06-14 11:18:27 -04:00
parent bd1b4d3130
commit f62c421c91
5 changed files with 41 additions and 22 deletions

View File

@@ -23,7 +23,7 @@ class CategoryFeaturedTopic < ActiveRecord::Base
admin.admin = true
admin.id = -1
query = TopicQuery.new(admin, per_page: SiteSetting.category_featured_topics)
query = TopicQuery.new(admin, per_page: SiteSetting.category_featured_topics, except_topic_id: c.topic_id)
results = query.list_category(c)
if results.present?
results.topic_ids.each_with_index do |topic_id, idx|