1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-22 03:01:29 +00:00

new option: REVERSE_HEADLINES (closes #97)

This commit is contained in:
Andrew Dolgov
2006-08-01 05:52:32 +01:00
parent b788b63241
commit d6e5706d7e
5 changed files with 14 additions and 2 deletions

View File

@@ -2105,8 +2105,12 @@
} else {
$query_strategy_part = "id > 0"; // dumb
}
$order_by = "updated DESC";
if (get_pref($link, 'REVERSE_HEADLINES')) {
$order_by = "updated";
} else {
$order_by = "updated DESC";
}
$feed_title = "";