1
0
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:
Andrew Dolgov
2013-03-25 22:45:40 +04:00
parent a6adb136fd
commit 2e4faaacff
2 changed files with 5 additions and 0 deletions

View File

@@ -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;
}

View File

@@ -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>