diff options
| author | 2020-04-16 18:09:54 +0200 | |
|---|---|---|
| committer | 2020-04-16 18:09:54 +0200 | |
| commit | 5ddae689535cb5df7ae4d54f0efc3806d71a266c (patch) | |
| tree | 04e69ba40476786881029117abd64dc2dfba4c9e /app/layout/aside_feed.phtml | |
| parent | 475feffdbec733b3d3221276217692bed5f8f090 (diff) | |
Option to control which categories to unfold (#2888)
#fix https://github.com/FreshRSS/FreshRSS/issues/2324
Diffstat (limited to 'app/layout/aside_feed.phtml')
| -rw-r--r-- | app/layout/aside_feed.phtml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/layout/aside_feed.phtml b/app/layout/aside_feed.phtml index 4c01b4694..52531b252 100644 --- a/app/layout/aside_feed.phtml +++ b/app/layout/aside_feed.phtml @@ -46,7 +46,7 @@ <?php $t_active = FreshRSS_Context::isCurrentGet('T'); - $t_show = $t_active || FreshRSS_Context::$user_conf->display_categories; + $t_show = ($t_active && FreshRSS_Context::$user_conf->display_categories === 'active') || FreshRSS_Context::$user_conf->display_categories === 'all'; ?> <li class="tree-folder category tags<?= $t_active ? ' active' : '' ?>"> <div class="tree-folder-title"> @@ -75,7 +75,7 @@ $position = $cat->attributes('position'); if (!empty($feeds)) { $c_active = FreshRSS_Context::isCurrentGet('c_' . $cat->id()); - $c_show = $c_active || FreshRSS_Context::$user_conf->display_categories; + $c_show = ($c_active && FreshRSS_Context::$user_conf->display_categories === 'active') || FreshRSS_Context::$user_conf->display_categories === 'all'; ?> <li class="tree-folder category<?= $c_active ? ' active' : '' ?>"<?= null === $position ? '' : "data-position='$position'" ?> data-unread="<?= $cat->nbNotRead() ?>"> <div class="tree-folder-title"> |
