]> git.mxchange.org Git - friendica.git/commitdiff
Update bbcode.php
authorfabrixxm <fabrix.xm@gmail.com>
Fri, 16 May 2014 08:55:29 +0000 (10:55 +0200)
committerfabrixxm <fabrix.xm@gmail.com>
Fri, 16 May 2014 08:55:29 +0000 (10:55 +0200)
Fix translatable string.

include/bbcode.php

index 686bd41b8e1aa8a939066dec24a9fcf0d60e7a3b..33c0721b08e9cda041b7b151d72d8226368791ea 100644 (file)
@@ -454,10 +454,9 @@ function bb_ShareAttributesForExport($match) {
        $userid = GetProfileUsername($profile,$author);
 
        $headline = '<div class="shared_header">';
-       $headline .= sprintf(t('<span><b>'.
-                       html_entity_decode("&#x2672; ", ENT_QUOTES, 'UTF-8').
-                       '<a href="%s" target="_blank">%s</a>%s:</b></span>'), $link, $userid, $posted);
-        $headline .= "</div>";
+       $headline .= '<span><b>'.html_entity_decode("&#x2672; ", ENT_QUOTES, 'UTF-8');
+       $headline .= sprintf(t('<a href="%1$s" target="_blank">%2$s</a> %3$s'), $link, $userid, $posted);
+        $headline .= ":</b></span></div>";
 
        $text = trim($match[1]);