bbcode: The header for shared messages for text based system needn't to have a profile link.

2022.09-rc
Michael Vogel 2014-04-22 00:56:46 +02:00
rodzic b01520babf
commit 10d36c324a
1 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -520,7 +520,8 @@ function bb_ShareAttributesSimple2($match) {
$userid = GetProfileUsername($profile,$author);
$text = "<br />".html_entity_decode("&#x2672; ", ENT_QUOTES, 'UTF-8').' <a href="'.$profile.'">'.$userid."</a>: <br />".$match[2];
//$text = "<br />".html_entity_decode("&#x2672; ", ENT_QUOTES, 'UTF-8').' <a href="'.$profile.'">'.$userid."</a>: <br />".$match[2];
$text = "<br />".html_entity_decode("&#x2672; ", ENT_QUOTES, 'UTF-8').' '.$userid.": <br />".$match[2];
return($text);
}