From: Andrew Dolgov Date: Fri, 28 Oct 2005 01:18:27 +0000 (+0100) Subject: fix old bug when all feeds were marked as updated every time (patch from adjuster... X-Git-Tag: 1.0.7~27 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=2907afa6fab45a57b74b788c4cde278acf124550;p=tt-rss.git fix old bug when all feeds were marked as updated every time (patch from adjuster@forum) --- 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"); }