From 61685aeadd50a26b89602e127641fdda026136a2 Mon Sep 17 00:00:00 2001 From: nobody Date: Fri, 11 Sep 2020 02:29:13 -0700 Subject: [PATCH] function name --- src/Model/Item.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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']);