From 6113ef7d22096e2a71a57c34483957ac7fe26205 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Mon, 5 Sep 2005 13:07:57 +0100 Subject: update unread/total/etc counters for selected feed on viewfeed iframe load --- backend.php | 24 +++++++++++++++++++----- 1 file changed, 19 insertions(+), 5 deletions(-) (limited to 'backend.php') diff --git a/backend.php b/backend.php index 325c367eb..a2236c3a6 100644 --- a/backend.php +++ b/backend.php @@ -274,8 +274,8 @@ $line = pg_fetch_assoc($result); - if ($subop == "ForceUpdate") { -// (!$subop && $line["update_timeout"] > MIN_UPDATE_TIME)) { + if ($subop == "ForceUpdate" || + (!$subop && $line["update_timeout"] > MIN_UPDATE_TIME)) { update_rss_feed($link, $line["feed_url"], $feed); @@ -482,9 +482,23 @@ $total = pg_fetch_result($result, 0, "total"); $unread = pg_fetch_result($result, 0, "unread"); - print "
$feed
"; - print "
$total
"; - print "
$unread
"; + // update unread/total counters and status for active feed in the feedlist + // kludge, because iframe doesn't seem to support onload() + + print ""; if ($addheader) { print ""; -- cgit v1.2.3