1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-01-03 18:19:14 +00:00

add _MOBILE_REVERSE_HEADLINES (closes #524)

This commit is contained in:
Andrew Dolgov
2012-12-28 00:49:54 +04:00
parent bc230f3fde
commit a6b4518788
7 changed files with 27 additions and 4 deletions

View File

@@ -349,7 +349,7 @@
$qfh_ret = queryFeedHeadlines($link, $feed_id, $limit,
$view_mode, $is_cat, $search, $search_mode, $match_on,
"score DESC, date_entered DESC", $offset);
"score DESC, date_entered ".(mobile_get_pref($link, 'REVERSE_HEADLINES') ? 'ASC' : 'DESC'), $offset);
$result = $qfh_ret[0];
$feed_title = $qfh_ret[1];