summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-03-29 05:33:19 +0100
committerAndrew Dolgov <[email protected]>2006-03-29 05:33:19 +0100
commitfc7741551e5a0ac46e77f8fd86017ac413faff4a (patch)
treeffbb8429bc5667c86e0b611710ffbf03e084272a
parent1e59ae3582c48fd7a5e3b4853992afa1712da3a7 (diff)
fix purge_feed for pg 8.1 (2)
-rw-r--r--functions.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/functions.php b/functions.php
index 8175a4326..a9081e59e 100644
--- a/functions.php
+++ b/functions.php
@@ -39,7 +39,7 @@
WHERE ttrss_entries.id = ref_id AND
marked = false AND
feed_id = '$feed_id' AND
- ttrss_entries.date_entered < NOW() - INTERVAL '$purge_interval days')");
+ ttrss_entries.date_entered < NOW() - INTERVAL '$purge_interval days'");
}
$rows = pg_affected_rows($result);