Merge branch 'master' into vdom

This commit is contained in:
Sam 2016-02-19 17:09:28 +11:00
commit 8493057942

View File

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