diff options
author | Mario Vavti <mario@mariovavti.com> | 2015-05-04 15:04:21 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2015-05-04 15:04:21 +0200 |
commit | ad7a629b96887a039d801b9aa2ab477d18e965f1 (patch) | |
tree | a1c2c8ae5881ab54589ed7dff1f4dbe4e52db770 /include | |
parent | 35a446445bf8b6810e851ec614157fd00f4c5002 (diff) | |
download | volse-hubzilla-ad7a629b96887a039d801b9aa2ab477d18e965f1.tar.gz volse-hubzilla-ad7a629b96887a039d801b9aa2ab477d18e965f1.tar.bz2 volse-hubzilla-ad7a629b96887a039d801b9aa2ab477d18e965f1.zip |
remove obsolete linebreak
Diffstat (limited to 'include')
-rw-r--r-- | include/bbcode.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/bbcode.php b/include/bbcode.php index fe5f37260..4ff6f842e 100644 --- a/include/bbcode.php +++ b/include/bbcode.php @@ -292,7 +292,7 @@ function bb_ShareAttributesSimple($match) { if ($matches[1] != "") $profile = $matches[1]; - $text = '<br />' . html_entity_decode("♲ ", ENT_QUOTES, 'UTF-8') . ' <a href="' . $profile . '">' . $author . '</a>: div class="reshared-content">' . $match[2] . '</div>'; + $text = html_entity_decode("♲ ", ENT_QUOTES, 'UTF-8') . ' <a href="' . $profile . '">' . $author . '</a>: div class="reshared-content">' . $match[2] . '</div>'; return($text); } |