From: Andrew Dolgov Date: Wed, 30 Apr 2008 09:30:07 +0000 (+0100) Subject: star articles with score greater than 1000 X-Git-Tag: 1.2.22.1~9 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=32d59314bc73322ed8094685c08887d49faf19d1;p=tt-rss.git star articles with score greater than 1000 --- diff --git a/functions.php b/functions.php index 2c073b46..d4231688 100644 --- a/functions.php +++ b/functions.php @@ -1187,7 +1187,7 @@ $last_read_qpart = 'NOW()'; } - if (find_article_filter($article_filters, 'mark')) { + if (find_article_filter($article_filters, 'mark') || $score > 1000) { $marked = 'true'; } else { $marked = 'false';