1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-16 01:45:56 +00:00

tag filter action - block empty tags

This commit is contained in:
Andrew Dolgov
2006-12-08 08:47:15 +01:00
parent 780fceac7b
commit df74052f1e

View File

@@ -762,7 +762,7 @@
$manual_tags = trim_array(split(",", $filter_param));
foreach ($manual_tags as $tag) {
if (!preg_match("/^[0-9]*$/", $tag)) {
if (!preg_match("/^[0-9]*$/", $tag) && $tag != '') {
array_push($entry_tags, $tag);
}
}