aboutsummaryrefslogtreecommitdiff
path: root/app/Models/Context.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Models/Context.php')
-rw-r--r--app/Models/Context.php4
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;