From: Andrew Dolgov Date: Tue, 11 Oct 2005 13:21:27 +0000 (+0100) Subject: fix auto expiration bug on MySQL backend X-Git-Tag: 1.0.7~71 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=3b063a95c5725fdab3c3c4efe6d6f54cd9aa7697;p=tt-rss.git fix auto expiration bug on MySQL backend --- diff --git a/functions.php b/functions.php index 962b03e8..80cd6191 100644 --- a/functions.php +++ b/functions.php @@ -5,9 +5,16 @@ function purge_old_posts($link) { if (PURGE_OLD_DAYS > 0) { - $result = db_query($link, "DELETE FROM ttrss_entries WHERE - marked = false AND - date_entered < NOW() - INTERVAL '".PURGE_OLD_DAYS." days'"); + + if (DB_TYPE == "pgsql") { + $result = db_query($link, "DELETE FROM ttrss_entries WHERE + marked = false AND + date_entered < NOW() - INTERVAL '".PURGE_OLD_DAYS." days'"); + } else { + $result = db_query($link, "DELETE FROM ttrss_entries WHERE + marked = false AND + date_entered < DATE_SUB(NOW(), INTERVAL ".PURGE_OLD_DAYS." DAY)"); + } } } @@ -205,7 +212,8 @@ content_hash, feed_id, comments, - no_orig_date) + no_orig_date, + date_entered) VALUES ('$entry_title', '$entry_guid', @@ -215,7 +223,8 @@ '$content_hash', '$feed', '$entry_comments', - $no_orig_date)"; + $no_orig_date, + NOW())"; $result = db_query($link, $query);