From 7131797307c2a6f7c57920dee6f21881d3373e98 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Thu, 4 Aug 2011 15:20:23 +0400 Subject: implement workaround for missing autoloaded headlines for adaptive & unread modes; reduce js debugging (refs #280) --- functions.php | 18 ++++-------------- 1 file changed, 4 insertions(+), 14 deletions(-) (limited to 'functions.php') diff --git a/functions.php b/functions.php index 21693c500..7c5916a1a 100644 --- a/functions.php +++ b/functions.php @@ -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 ""; -# print ""; -# } - - #print "]]>"; - return array($topmost_article_ids, $headlines_count, $feed, $disable_cache, $vgroup_last_feed, $reply['content'], $reply['toolbar']); } -- cgit v1.2.3-54-g00ecf