From: Andrew Dolgov Date: Fri, 2 Sep 2005 15:50:12 +0000 (+0100) Subject: purging of old posts is actually configurable now, added comments for some configurat... X-Git-Tag: 1.0.3~63 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=f92db4f5e750358bf49f4aa81d6f91b00e006494;p=tt-rss.git purging of old posts is actually configurable now, added comments for some configuration options, interface cleanups --- diff --git a/backend.php b/backend.php index 0fb3d1e8..ef6caf0b 100644 --- a/backend.php +++ b/backend.php @@ -562,11 +562,15 @@ Edit  Remove  - Mark as read  - Mark as unread  + href=\"javascript:removeSelectedFeeds()\">Remove "; + if (ENABLE_PREFS_CATCHUP_UNCATCHUP) { + print " + Mark as read  + Mark as unread "; + } + print " All feeds:  Export OPML"; diff --git a/config.php-dist b/config.php-dist index b02e4c43..e441a94b 100644 --- a/config.php-dist +++ b/config.php-dist @@ -1,13 +1,27 @@ diff --git a/functions.php b/functions.php index ab9b571f..9df33518 100644 --- a/functions.php +++ b/functions.php @@ -4,9 +4,9 @@ define('MAGPIE_OUTPUT_ENCODING', 'UTF-8'); function purge_old_posts() { - if (PURGE_OLD_DAYS) { + if (PURGE_OLD_DAYS > 0) { $result = pg_query("DELETE FROM ttrss_entries WHERE - date_entered < NOW() - INTERVAL '30 days'"); + date_entered < NOW() - INTERVAL '".PURGE_OLD_DAYS." days'"); } }