From f8310a587c26b0965bab71abfeb2d018e414f572 Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Mon, 15 Sep 2025 23:43:46 +0200 Subject: Clarify: Visibility hidden vs. archived (#7970) fix https://github.com/FreshRSS/FreshRSS/issues/7887 We have two concepts: how much a feed is shown or not (controlled by priority), and how often a feed is refreshed (or not, in which case it is archived). This PR removes the wording *Archived* from the *visibility* parameter, since this is not what it does. --- app/Controllers/entryController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/Controllers/entryController.php') diff --git a/app/Controllers/entryController.php b/app/Controllers/entryController.php index 8cabce82d..0cf25e24d 100644 --- a/app/Controllers/entryController.php +++ b/app/Controllers/entryController.php @@ -101,7 +101,7 @@ class FreshRSS_entry_Controller extends FreshRSS_ActionController { FreshRSS_Context::$search, FreshRSS_Context::$state, $is_read); break; case 'Z': - $entryDAO->markReadEntries($id_max, false, FreshRSS_Feed::PRIORITY_ARCHIVED, FreshRSS_Feed::PRIORITY_IMPORTANT, + $entryDAO->markReadEntries($id_max, false, FreshRSS_Feed::PRIORITY_HIDDEN, FreshRSS_Feed::PRIORITY_IMPORTANT, FreshRSS_Context::$search, FreshRSS_Context::$state, $is_read); break; case 'i': -- cgit v1.2.3