1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-25 11:01:30 +00:00

move DAEMON_REFRESH_ONLY check to update_rss_feed

This commit is contained in:
Andrew Dolgov
2005-11-27 15:49:36 +01:00
parent b8dc6247ef
commit 21cfcdf29b

View File

@@ -97,10 +97,6 @@
purge_old_posts($link);
}
if (DAEMON_REFRESH_ONLY && !$_GET["daemon"]) {
return;
}
// db_query($link, "BEGIN");
$result = db_query($link, "SELECT feed_url,id,
@@ -168,6 +164,10 @@
if (WEB_DEMO_MODE) return;
if (DAEMON_REFRESH_ONLY && !$_GET["daemon"]) {
return;
}
$feed = db_escape_string($feed);
error_reporting(0);