From 05fbd58f65613590db0fa15a78ed1593c56e5f74 Mon Sep 17 00:00:00 2001 From: Mike Macgirvin Date: Sun, 10 Mar 2024 19:09:39 -0700 Subject: [PATCH] issue when fragment of naked url matches a tag in the same post --- Code/Module/Item.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Code/Module/Item.php b/Code/Module/Item.php index fa4faf829..83dbf4de6 100644 --- a/Code/Module/Item.php +++ b/Code/Module/Item.php @@ -1002,13 +1002,13 @@ class Item extends Controller } $summary = wrap_code($summary); - $summary = cleanup_bbcode($summary); $summary_tags = linkify_tags($summary, ($uid) ? $uid : $profile_uid); + $summary = cleanup_bbcode($summary); $summary = unwrap_code($summary); $body = wrap_code($body); - $body = cleanup_bbcode($body); $body_tags = linkify_tags($body, ($uid) ? $uid : $profile_uid); + $body = cleanup_bbcode($body); $body = unwrap_code($body);