diff --git a/include/bbcode.php b/include/bbcode.php index bc3076777..8ef144ea0 100644 --- a/include/bbcode.php +++ b/include/bbcode.php @@ -489,13 +489,16 @@ function bb_ShareAttributes($share, $simplehtml) { $text .= "

".$link; break; default: - $headline = trim($share[1]).'
'; + $headline = trim($share[1])."\n"; + $headline .= '
'."\n"; + $headline .= '
'."\n"; if ($avatar != "") $headline .= ''; $headline .= sprintf(t('%s wrote the following post'.$reldate.':'), $profile, $author, $link); - $headline .= "
"; - $text = $headline.'
'.trim($share[3])."
"; + $headline .= "
\n"; + $text = $headline.'
'.trim($share[3])."
\n"; + $text .= "
\n"; break; } return($text);