diff --git a/include/rssfuncs.php b/include/rssfuncs.php index 0cd41dc05..f4f9fa53c 100644 --- a/include/rssfuncs.php +++ b/include/rssfuncs.php @@ -1271,8 +1271,12 @@ $match = @preg_match("/$reg_exp/i", $author); break; case "tag": - $tag_string = join(",", $tags); - $match = @preg_match("/$reg_exp/i", $tag_string); + foreach ($tags as $tag) { + if (@preg_match("/$reg_exp/i", $tag)) { + $match = true; + break; + } + } break; }