From 2907afa6fab45a57b74b788c4cde278acf124550 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 28 Oct 2005 02:18:27 +0100 Subject: [PATCH] fix old bug when all feeds were marked as updated every time (patch from adjuster@forum) --- functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions.php b/functions.php index f8fb75a5..e79ea21c 100644 --- a/functions.php +++ b/functions.php @@ -343,7 +343,7 @@ } } - db_query($link, "UPDATE ttrss_feeds SET last_updated = NOW()"); + db_query($link, "UPDATE ttrss_feeds SET last_updated = NOW() WHERE id = $feed"); } -- 2.39.5