fix logic for when to include topics in category list

This commit is contained in:
Régis Hanol 2016-08-22 23:11:08 +02:00
parent 9573e28df9
commit d06e2793aa

View File

@ -16,9 +16,9 @@ class CategoriesController < ApplicationController
@description = SiteSetting.site_description
include_topics = view_context.mobile_view?
include_topics ||= SiteSetting.category_page_style == "categories_with_featured_topics".freeze
include_topics ||= params[:include_topics]
include_topics = view_context.mobile_view? ||
params[:include_topics] ||
SiteSetting.category_page_style == "categories_with_featured_topics".freeze
category_options = {
is_homepage: current_homepage == "categories".freeze,