mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-21 21:41:27 +00:00
implement workaround for missing autoloaded headlines for adaptive & unread modes; reduce js debugging (refs #280)
This commit is contained in:
@@ -4944,10 +4944,7 @@
|
||||
|
||||
$topmost_article_ids = array();
|
||||
|
||||
if (!$offset) {
|
||||
$offset = 0;
|
||||
}
|
||||
|
||||
if (!$offset) $offset = 0;
|
||||
if ($subop == "undefined") $subop = "";
|
||||
|
||||
$subop_split = explode(":", $subop);
|
||||
@@ -5024,12 +5021,12 @@
|
||||
$match_on = "both";
|
||||
}
|
||||
|
||||
$real_offset = $offset * $limit;
|
||||
//$real_offset = $offset * $limit;
|
||||
|
||||
if ($_REQUEST["debug"]) $timing_info = print_checkpoint("H0", $timing_info);
|
||||
|
||||
$qfh_ret = queryFeedHeadlines($link, $feed, $limit, $view_mode, $cat_view,
|
||||
$search, $search_mode, $match_on, $override_order, $real_offset);
|
||||
$search, $search_mode, $match_on, $override_order, $offset);
|
||||
|
||||
if ($_REQUEST["debug"]) $timing_info = print_checkpoint("H1", $timing_info);
|
||||
|
||||
@@ -5055,7 +5052,7 @@
|
||||
|
||||
if (db_num_rows($result) > 0) {
|
||||
|
||||
$lnum = $limit*$offset;
|
||||
$lnum = $offset+1;
|
||||
|
||||
$num_unread = 0;
|
||||
$cur_feed_title = '';
|
||||
@@ -5532,13 +5529,6 @@
|
||||
}
|
||||
}
|
||||
|
||||
# if (!$offset) {
|
||||
# if ($headlines_count > 0) print "</div>";
|
||||
# print "</div>";
|
||||
# }
|
||||
|
||||
#print "]]></content>";
|
||||
|
||||
return array($topmost_article_ids, $headlines_count, $feed, $disable_cache,
|
||||
$vgroup_last_feed, $reply['content'], $reply['toolbar']);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user