mirror of
https://github.com/friendica/friendica
synced 2025-04-25 22:30:10 +00:00
Fix: Mentions in the HTML part of the "contentMap" now are links
This commit is contained in:
parent
a8ace6522c
commit
85b3c880ef
2 changed files with 5 additions and 2 deletions
|
@ -1680,7 +1680,7 @@ class BBCode extends BaseObject
|
|||
$text = str_replace(["\r","\n"], ['<br />', '<br />'], $text);
|
||||
|
||||
// Remove all hashtag addresses
|
||||
if ((!$try_oembed || $simple_html) && !in_array($simple_html, [3, 7, 9])) {
|
||||
if ($simple_html && !in_array($simple_html, [3, 7, 9])) {
|
||||
$text = preg_replace("/([#@!])\[url\=(.*?)\](.*?)\[\/url\]/ism", '$1$3', $text);
|
||||
} elseif ($simple_html == 3) {
|
||||
// The ! is converted to @ since Diaspora only understands the @
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue