diff --git a/src/Model/Item.php b/src/Model/Item.php index d18e96aa16..16ac272655 100644 --- a/src/Model/Item.php +++ b/src/Model/Item.php @@ -2673,7 +2673,7 @@ class Item if (!$mention) { $tags = Tag::getByURIId($item_id, [Tag::MENTION, Tag::EXCLUSIVE_MENTION]); - $foreach ($tags as $tag) { + foreach ($tags as $tag) { if (Strings::compareLink($link, $tag['url']) || Strings::compareLink($dlink, $tag['url'])) { $mention = true; Logger::log('mention found in tag: ' . $tag['url']);