mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-16 00:15:57 +00:00
add unread_first view mode
This commit is contained in:
@@ -2407,6 +2407,10 @@
|
||||
$order_by = "score DESC, $order_by";
|
||||
}
|
||||
|
||||
if ($view_mode == "unread_first") {
|
||||
if (!$override_order) $override_order = "unread DESC, $order_by";
|
||||
}
|
||||
|
||||
if ($override_order) {
|
||||
$order_by = $override_order;
|
||||
}
|
||||
|
||||
@@ -160,6 +160,7 @@
|
||||
<option value="marked"><?php echo __('Starred') ?></option>
|
||||
<option value="published"><?php echo __('Published') ?></option>
|
||||
<option value="unread"><?php echo __('Unread') ?></option>
|
||||
<option value="unread_first"><?php echo __('Unread First') ?></option>
|
||||
<!-- <option value="noscores"><?php echo __('Ignore Scoring') ?></option> -->
|
||||
</select>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user