1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-20 20:21:29 +00:00

add action to reset category order

This commit is contained in:
Andrew Dolgov
2008-08-29 09:01:53 +01:00
parent 782ddd7014
commit 9d393c84da
6 changed files with 73 additions and 4 deletions

View File

@@ -4234,9 +4234,9 @@
if (get_pref($link, 'ENABLE_FEED_CATS')) {
if (get_pref($link, "FEEDS_SORT_BY_UNREAD")) {
$order_by_qpart = "category,unread DESC,title";
$order_by_qpart = "order_id,category,unread DESC,title";
} else {
$order_by_qpart = "category,title";
$order_by_qpart = "order_id,category,title";
}
} else {
if (get_pref($link, "FEEDS_SORT_BY_UNREAD")) {