summaryrefslogtreecommitdiff
path: root/classes/rssutils.php
diff options
context:
space:
mode:
Diffstat (limited to 'classes/rssutils.php')
-rwxr-xr-xclasses/rssutils.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/classes/rssutils.php b/classes/rssutils.php
index 923e98c82..b43e752da 100755
--- a/classes/rssutils.php
+++ b/classes/rssutils.php
@@ -781,6 +781,12 @@ class RSSUtils {
$plugin->hook_filter_triggered($feed, $owner_uid, $article, $matched_filters, $matched_rules, $article_filters);
}
+ $matched_filter_ids = implode(",", array_map(function($f) { return $f['id']; }, $matched_filters));
+
+ $fsth = $pdo->prepare("UPDATE ttrss_filters2 SET last_triggered = NOW() WHERE
+ id IN (?) AND owner_uid = ?");
+ $fsth->execute([$matched_filter_ids, $owner_uid]);
+
if (Debug::get_loglevel() >= Debug::$LOG_EXTENDED) {
Debug::log("matched filters: ", Debug::$LOG_VERBOSE);