mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-20 19:41:29 +00:00
tag filter action - block empty tags
This commit is contained in:
@@ -762,7 +762,7 @@
|
|||||||
$manual_tags = trim_array(split(",", $filter_param));
|
$manual_tags = trim_array(split(",", $filter_param));
|
||||||
|
|
||||||
foreach ($manual_tags as $tag) {
|
foreach ($manual_tags as $tag) {
|
||||||
if (!preg_match("/^[0-9]*$/", $tag)) {
|
if (!preg_match("/^[0-9]*$/", $tag) && $tag != '') {
|
||||||
array_push($entry_tags, $tag);
|
array_push($entry_tags, $tag);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user