summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-03-25 22:45:40 +0400
committerAndrew Dolgov <[email protected]>2013-03-25 22:45:40 +0400
commit2e4faaacffb69142a294bf761bc9079360135781 (patch)
tree770614a459e5c3abb14b47f80c3f9d92c4777d0f /include
parenta6adb136fd366d4e0d417a79bb41a0b4d2578efb (diff)
add unread_first view mode
Diffstat (limited to 'include')
-rw-r--r--include/functions.php4
1 files changed, 4 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;
}