From 24605713bbfb78eeae3760df1b1ca8a69a1262ac Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Sat, 17 May 2008 03:32:43 +0100 Subject: mark articles with score less than -500 as read on import --- functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'functions.php') diff --git a/functions.php b/functions.php index 6e6903d17..9f3505f93 100644 --- a/functions.php +++ b/functions.php @@ -1156,7 +1156,7 @@ _debug("update_rss_feed: user record not found, creating..."); } - if (!find_article_filter($article_filters, 'catchup')) { + if ($score >= -500 && !find_article_filter($article_filters, 'catchup')) { $unread = 'true'; $last_read_qpart = 'NULL'; } else { -- cgit v1.2.3