diff options
| author | 2025-09-15 23:43:46 +0200 | |
|---|---|---|
| committer | 2025-09-15 23:43:46 +0200 | |
| commit | f8310a587c26b0965bab71abfeb2d018e414f572 (patch) | |
| tree | 096f29ade69a6af2d9ab4b2235a2689253f0150f /app/Models/Context.php | |
| parent | ea366d597f3af164a90eb6d58a7525d23a1418f0 (diff) | |
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.
Diffstat (limited to 'app/Models/Context.php')
| -rw-r--r-- | app/Models/Context.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Models/Context.php b/app/Models/Context.php index 76a51c7ef..efe36f0e2 100644 --- a/app/Models/Context.php +++ b/app/Models/Context.php @@ -416,12 +416,12 @@ final class FreshRSS_Context { self::$description = FreshRSS_Context::systemConf()->meta_description; self::$get_unread = self::$total_unread; break; - case 'A': // All except PRIORITY_ARCHIVED + case 'A': // All except PRIORITY_HIDDEN self::$current_get['A'] = true; self::$description = FreshRSS_Context::systemConf()->meta_description; self::$get_unread = self::$total_unread; break; - case 'Z': // All including PRIORITY_ARCHIVED + case 'Z': // All including PRIORITY_HIDDEN self::$current_get['Z'] = true; self::$name = _t('index.feed.title'); self::$description = FreshRSS_Context::systemConf()->meta_description; |
