mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-04-04 22:53:27 -04:00
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.
This commit is contained in:
committed by
GitHub
parent
ea366d597f
commit
f8310a587c
@@ -140,10 +140,10 @@ class FreshRSS_UserQuery {
|
||||
case 'a': // All PRIORITY_MAIN_STREAM
|
||||
$this->get_type = 'all';
|
||||
break;
|
||||
case 'A': // All except PRIORITY_ARCHIVED
|
||||
case 'A': // All except PRIORITY_HIDDEN
|
||||
$this->get_type = 'A';
|
||||
break;
|
||||
case 'Z': // All including PRIORITY_ARCHIVED
|
||||
case 'Z': // All including PRIORITY_HIDDEN
|
||||
$this->get_type = 'Z';
|
||||
break;
|
||||
case 'c':
|
||||
|
||||
Reference in New Issue
Block a user