From 7217d24a97611116f6b0171d052e7057fbf2eddd Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Wed, 27 Feb 2019 07:59:43 -0500 Subject: [PATCH] Replace isset by array_key_exists on array class constant in Model\Term - Addresses https://github.com/friendica/friendica/issues/6386#issuecomment-467835406 --- src/Model/Term.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]; } }