From 10d36c324af85a2f9736bc01877dcbb16d19cc0f Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Tue, 22 Apr 2014 00:56:46 +0200 Subject: [PATCH] bbcode: The header for shared messages for text based system needn't to have a profile link. --- include/bbcode.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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); }