diff --git a/backend.php b/backend.php index 0fb3d1e85..ef6caf0b1 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 b02e4c438..e441a94be 100644 --- a/config.php-dist +++ b/config.php-dist @@ -1,13 +1,27 @@ diff --git a/functions.php b/functions.php index ab9b571fe..9df335188 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'"); } }