From 897e4a3f4a273d50c28157edb67612b2d7fa2e6f Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Fri, 27 Dec 2024 12:03:59 +0100 Subject: Search in all feeds (#7144) * Search in all feeds Search in PRIORITY_ARCHIVED with `&get=A` fix https://github.com/FreshRSS/FreshRSS/discussions/7143 * Fix type * Search in PRIORITY_ARCHIVED with `&get=Z` * More * Fixes * One more fix * Extra features in user queries * Move i18n key * Fix overview * Enlarge query boxes * Revert i18n spelling * i18n: it Thanks @UserRoot-Luca Co-authored-by: UserRoot-Luca <55756898+UserRoot-Luca@users.noreply.github.com> --------- Co-authored-by: UserRoot-Luca <55756898+UserRoot-Luca@users.noreply.github.com> --- app/Controllers/indexController.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'app/Controllers/indexController.php') diff --git a/app/Controllers/indexController.php b/app/Controllers/indexController.php index a977386a3..70bb25a77 100644 --- a/app/Controllers/indexController.php +++ b/app/Controllers/indexController.php @@ -205,7 +205,9 @@ class FreshRSS_index_Controller extends FreshRSS_ActionController { $this->view->excludeMutedFeeds = $type !== 'f'; // Exclude muted feeds except when we focus on a feed switch ($type) { - case 'a': + case 'a': // All PRIORITY_MAIN_STREAM + case 'A': // All except PRIORITY_ARCHIVED + case 'Z': // All including PRIORITY_ARCHIVED $this->view->categories = FreshRSS_Context::categories(); break; case 'c': -- cgit v1.2.3