Issue 12863: Convert Hubzilla mentions to Friendica mentions

This commit is contained in:
Michael 2023-03-18 07:59:47 +00:00
parent 6e94220642
commit efb2b47dc9
1 changed files with 3 additions and 1 deletions

View File

@ -93,7 +93,9 @@ class Processor
*/
public static function normalizeMentionLinks(string $body): string
{
return preg_replace('%\[url=([^\[\]]*)]([#@!])(.*?)\[/url]%ism', '$2[url=$1]$3[/url]', $body);
$body = preg_replace('%\[url=([^\[\]]*)]([#@!])(.*?)\[/url]%ism', '$2[url=$1]$3[/url]', $body);
$body = preg_replace('%([#@!])\[zrl=([^\[\]]*)](.*?)\[/zrl]%ism', '$1[url=$2]$3[/url]', $body);
return $body;
}
/**