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

This commit is contained in:
Michael Vogel 2014-04-22 00:56:46 +02:00
parent b01520babf
commit 10d36c324a
1 changed files with 2 additions and 1 deletions

View File

@ -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);
}