diff options
| author | 2023-06-15 12:47:47 +0200 | |
|---|---|---|
| committer | 2023-06-15 12:47:47 +0200 | |
| commit | 228d7adfdb90c3fdd179f80fbfde565eb06e0cec (patch) | |
| tree | 449368813c0ee49e50db55a560dee6e4ffc9cca5 /app/layout/aside_subscription.phtml | |
| parent | 644427b9b1a0cf525b84f4a2aac2d6a5a2f55045 (diff) | |
Fix slider views (#5469)
* Fix slider titles
And fix full-page view of category configuration.
FIx https://github.com/FreshRSS/FreshRSS/pull/5449#issuecomment-1590021947
* Fix user queries and user management
Implement https://github.com/FreshRSS/FreshRSS/pull/5469#issuecomment-1591957935
Diffstat (limited to 'app/layout/aside_subscription.phtml')
| -rw-r--r-- | app/layout/aside_subscription.phtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/layout/aside_subscription.phtml b/app/layout/aside_subscription.phtml index e1f520f34..e6329df46 100644 --- a/app/layout/aside_subscription.phtml +++ b/app/layout/aside_subscription.phtml @@ -8,7 +8,7 @@ <a href="<?= _url('subscription', 'add') ?>"><?= _t('sub.menu.add') ?></a> </li> - <li class="item<?= Minz_Request::controllerName() === 'subscription' && Minz_Request::actionName() === 'index' ? ' active' : '' ?>"> + <li class="item<?= Minz_Request::controllerName() === 'subscription' && in_array(Minz_Request::actionName(), ['index', 'category', 'feed'], true) ? ' active' : '' ?>"> <a href="<?= _url('subscription', 'index') ?>"><?= _t('sub.menu.subscription_management') ?></a> </li> |
