aboutsummaryrefslogtreecommitdiffstats
path: root/include/bbcode.php
diff options
context:
space:
mode:
authorredmatrix <redmatrix@redmatrix.me>2015-05-05 00:50:25 -0700
committerredmatrix <redmatrix@redmatrix.me>2015-05-05 00:50:25 -0700
commit63823be5fc7d71c2c914575cea1bdc3bf161d4f8 (patch)
tree42ca7c18de631ca712a4834214bcf90689e13f25 /include/bbcode.php
parentfd79c598657d2b575d9cb697e0f77fe469b82a95 (diff)
parent15fc4d05ece45e236c1cab3947d53f50753c3c16 (diff)
downloadvolse-hubzilla-63823be5fc7d71c2c914575cea1bdc3bf161d4f8.tar.gz
volse-hubzilla-63823be5fc7d71c2c914575cea1bdc3bf161d4f8.tar.bz2
volse-hubzilla-63823be5fc7d71c2c914575cea1bdc3bf161d4f8.zip
Merge branch 'master' of https://github.com/redmatrix/redmatrix
Diffstat (limited to 'include/bbcode.php')
-rw-r--r--include/bbcode.php2
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("&#x2672; ", ENT_QUOTES, 'UTF-8') . ' <a href="' . $profile . '">' . $author . '</a>: div class="reshared-content">' . $match[2] . '</div>';
+ $text = html_entity_decode("&#x2672; ", ENT_QUOTES, 'UTF-8') . ' <a href="' . $profile . '">' . $author . '</a>: div class="reshared-content">' . $match[2] . '</div>';
return($text);
}