From b072b8f2840769e7ec6a64a17f9a1174e65bc800 Mon Sep 17 00:00:00 2001 From: fabrixxm Date: Fri, 16 May 2014 10:55:29 +0200 Subject: [PATCH] Update bbcode.php Fix translatable string. --- include/bbcode.php | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/include/bbcode.php b/include/bbcode.php index 686bd41b8e..33c0721b08 100644 --- a/include/bbcode.php +++ b/include/bbcode.php @@ -454,10 +454,9 @@ function bb_ShareAttributesForExport($match) { $userid = GetProfileUsername($profile,$author); $headline = '
'; - $headline .= sprintf(t(''. - html_entity_decode("♲ ", ENT_QUOTES, 'UTF-8'). - '%s%s:'), $link, $userid, $posted); - $headline .= "
"; + $headline .= ''.html_entity_decode("♲ ", ENT_QUOTES, 'UTF-8'); + $headline .= sprintf(t('%2$s %3$s'), $link, $userid, $posted); + $headline .= ":"; $text = trim($match[1]);