|
|
@@ -1339,17 +1339,17 @@ SQL;
|
|
|
case 'a': // All PRIORITY_MAIN_STREAM
|
|
|
$where .= 'f.priority >= ' . FreshRSS_Feed::PRIORITY_MAIN_STREAM . ' ';
|
|
|
break;
|
|
|
- case 'A': // All except PRIORITY_ARCHIVED
|
|
|
+ case 'A': // All except PRIORITY_HIDDEN
|
|
|
$where .= 'f.priority >= ' . FreshRSS_Feed::PRIORITY_CATEGORY . ' ';
|
|
|
break;
|
|
|
- case 'Z': // All including PRIORITY_ARCHIVED
|
|
|
- $where .= 'f.priority >= ' . FreshRSS_Feed::PRIORITY_ARCHIVED . ' ';
|
|
|
+ case 'Z': // All including PRIORITY_HIDDEN
|
|
|
+ $where .= 'f.priority >= ' . FreshRSS_Feed::PRIORITY_HIDDEN . ' ';
|
|
|
break;
|
|
|
case 'i': // Priority important feeds
|
|
|
$where .= 'f.priority >= ' . FreshRSS_Feed::PRIORITY_IMPORTANT . ' ';
|
|
|
break;
|
|
|
case 's': //Starred. Deprecated: use $state instead
|
|
|
- $where .= 'f.priority > ' . FreshRSS_Feed::PRIORITY_ARCHIVED . ' ';
|
|
|
+ $where .= 'f.priority > ' . FreshRSS_Feed::PRIORITY_HIDDEN . ' ';
|
|
|
$where .= 'AND e.is_favorite=1 ';
|
|
|
break;
|
|
|
case 'S': //Starred
|