diff --git a/src/Model/Term.php b/src/Model/Term.php index ed67969265..f196974a8f 100644 --- a/src/Model/Term.php +++ b/src/Model/Term.php @@ -404,7 +404,7 @@ class Term { $tag_chars = []; foreach ($types as $type) { - if (isset(self::TAG_CHARACTER[$type])) { + if (array_key_exists($type, self::TAG_CHARACTER)) { $tag_chars[] = self::TAG_CHARACTER[$type]; } }