clean up hack

This commit is contained in:
Sam 2016-02-19 17:08:08 +11:00
parent c230c11707
commit 02002afd3f
1 changed files with 2 additions and 3 deletions

View File

@ -146,9 +146,8 @@ class CategoryList
def prune_empty
if @guardian.can_create?(Category) && !SiteSetting.allow_uncategorized_topics
# HACK: Don't show uncategorized to admins either, if uncategorized topics are not allowed
# and there are none.
unless SiteSetting.allow_uncategorized_topics
# HACK: Don't show uncategorized to anyone if not allowed
@categories.delete_if do |c|
c.uncategorized? && c.displayable_topics.blank?
end