mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-22 18:51:28 +00:00
do not auto-apply tags specified in BLACKLISTED_TAGS
This commit is contained in:
@@ -875,9 +875,12 @@
|
||||
}
|
||||
}
|
||||
|
||||
$boring_tags = trim_array(split(",", get_pref($link,
|
||||
'BLACKLISTED_TAGS', $owner_uid, '')));
|
||||
|
||||
if ($additional_tags && is_array($additional_tags)) {
|
||||
foreach ($additional_tags as $tag) {
|
||||
if (tag_is_valid($tag)) {
|
||||
if (tag_is_valid($tag) && !array_key_exists($tag, $boring_tags)) {
|
||||
array_push($entry_tags, $tag);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user