summaryrefslogtreecommitdiff
path: root/functions.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-10-28 02:18:27 +0100
committerAndrew Dolgov <[email protected]>2005-10-28 02:18:27 +0100
commit2907afa6fab45a57b74b788c4cde278acf124550 (patch)
treeb39b6e4c84ef276df0b0d87d52259547b02dda24 /functions.php
parent7f2ee7952b665c0384bc0390167a3a30d6fb3599 (diff)
fix old bug when all feeds were marked as updated every time (patch from adjuster@forum)
Diffstat (limited to 'functions.php')
-rw-r--r--functions.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/functions.php b/functions.php
index f8fb75a5c..e79ea21cc 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");
}