From: Michael Vogel Date: Mon, 21 Apr 2014 22:56:46 +0000 (+0200) Subject: bbcode: The header for shared messages for text based system needn't to have a profil... X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=10d36c324af85a2f9736bc01877dcbb16d19cc0f;p=friendica.git bbcode: The header for shared messages for text based system needn't to have a profile link. --- diff --git a/include/bbcode.php b/include/bbcode.php index 342cd7be5f..308cbf1be1 100644 --- a/include/bbcode.php +++ b/include/bbcode.php @@ -520,7 +520,8 @@ function bb_ShareAttributesSimple2($match) { $userid = GetProfileUsername($profile,$author); - $text = "
".html_entity_decode("♲ ", ENT_QUOTES, 'UTF-8').' '.$userid.":
".$match[2]; + //$text = "
".html_entity_decode("♲ ", ENT_QUOTES, 'UTF-8').' '.$userid.":
".$match[2]; + $text = "
".html_entity_decode("♲ ", ENT_QUOTES, 'UTF-8').' '.$userid.":
".$match[2]; return($text); }