summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/functions.php4
-rw-r--r--index.php1
2 files changed, 5 insertions, 0 deletions
diff --git a/include/functions.php b/include/functions.php
index fd92348be..115cc0352 100644
--- a/include/functions.php
+++ b/include/functions.php
@@ -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;
}
diff --git a/index.php b/index.php
index 5be6d12a4..c634235ab 100644
--- a/index.php
+++ b/index.php
@@ -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>