Skip to content
Snippets Groups Projects
Commit 09eb1f9c authored by JediKev's avatar JediKev
Browse files

issue: Private FAQs In Search Sidebar

This addresses and issue on the forums where upon searching for an FAQ,
Private FAQ Categories will appear in the sidebar. This updates the search
sidebar to exclude the Private FAQ Categories.
parent acac3707
No related branches found
No related tags found
No related merge requests found
......@@ -45,6 +45,7 @@ foreach (Topic::objects()
<div class="header"><?php echo __('Categories'); ?></div>
<?php
foreach (Category::objects()
->exclude(Q::any(array('ispublic'=>Category::VISIBILITY_PRIVATE)))
->annotate(array('faqs_count'=>SqlAggregate::count('faqs')))
->filter(array('faqs_count__gt'=>0))
as $C) { ?>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment