]> git.mxchange.org Git - friendica.git/commitdiff
Fix regexp for search text generation
authorMichael <heluecht@pirati.ca>
Sat, 13 Jan 2024 19:20:45 +0000 (19:20 +0000)
committerRoland Häder <roland@mxchange.org>
Sun, 28 Jan 2024 15:37:43 +0000 (16:37 +0100)
src/Content/Text/BBCode.php

index ac241213d445d912b9273965617cfbe94a4bb688..51f28773d066409692313c8a2441e45d4e15715f 100644 (file)
@@ -283,7 +283,7 @@ class BBCode
                // Removes mentions, remove links from hashtags
                $text = preg_replace('/[@!]\[url\=.*?\].*?\[\/url\]/ism', ' ', $text);
                $text = preg_replace('/[#]\[url\=.*?\](.*?)\[\/url\]/ism', ' #$1 ', $text);
-               $text = preg_replace('/[@!#]?\[url.*?\[\/url\]/ism', ' ', $text);
+               $text = preg_replace('/[@!#]+?\[url.*?\[\/url\]/ism', ' ', $text);
                $text = preg_replace("/\[url=[^\[\]]*\](.*)\[\/url\]/Usi", ' $1 ', $text);
 
                // Convert it to plain text