]> git.mxchange.org Git - friendica.git/commitdiff
bbcode: The header for shared messages for text based system needn't to have a profil...
authorMichael Vogel <icarus@dabo.de>
Mon, 21 Apr 2014 22:56:46 +0000 (00:56 +0200)
committerMichael Vogel <icarus@dabo.de>
Mon, 21 Apr 2014 22:56:46 +0000 (00:56 +0200)
include/bbcode.php

index 342cd7be5f208d60997e8599c7a4c208b15a8b7d..308cbf1be18925ca9b51873a7dfd915a89d9a709 100644 (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);
 }