From b16764641900e498b5c89943e83b2a4fbb324a63 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Sat, 17 Jan 2009 08:15:04 +0100 Subject: [PATCH] viewfeed: disable output of counters when serving an infscroll request --- backend.php | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/backend.php b/backend.php index 33c3a45d4..b772dbbf1 100644 --- a/backend.php +++ b/backend.php @@ -349,9 +349,11 @@ // } if (get_pref($link, 'COMBINED_DISPLAY_MODE')) { - print ""; - getAllCounters($link, $omode, $feed); - print ""; + if (!$offset) { + print ""; + getAllCounters($link, $omode, $feed); + print ""; + } } if ($_GET["debug"]) $timing_info = print_checkpoint("30", $timing_info);