summaryrefslogtreecommitdiff
path: root/functions.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2008-05-17 03:32:43 +0100
committerAndrew Dolgov <[email protected]>2008-05-17 03:32:43 +0100
commit24605713bbfb78eeae3760df1b1ca8a69a1262ac (patch)
tree966bef13dd6b397ef8f1184cf053ae66c0f07457 /functions.php
parente266e7870d4c1ccc4b1a6e2e0209316885dc24df (diff)
mark articles with score less than -500 as read on import
Diffstat (limited to 'functions.php')
-rw-r--r--functions.php2
1 files changed, 1 insertions, 1 deletions
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 {