FIX: Show category text color in oneboxes

This commit is contained in:
Robin Ward 2014-01-23 13:35:29 -05:00
parent c9cca78ab2
commit e3a151d66a
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ module Oneboxer
category = topic.category
if category
category = "<a href=\"/category/#{category.slug}\" class=\"badge badge-category\" style=\"background-color: ##{category.color}\">#{category.name}</a>"
category = "<a href=\"/category/#{category.slug}\" class=\"badge badge-category\" style=\"background-color: ##{category.color}; color: ##{category.text_color}\">#{category.name}</a>"
end
quote = post.excerpt(SiteSetting.post_onebox_maxlength)