aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorredmatrix <redmatrix@redmatrix.me>2015-05-05 19:24:35 -0700
committerredmatrix <redmatrix@redmatrix.me>2015-05-05 19:24:35 -0700
commit245080a6d7b86ad2a94c62b02a8591bc70b99632 (patch)
tree4eb0980a97aa6732e0d2857994b9caed84099c69 /include
parentf559c91b7a7ff3e3e3bfd1ce430ce5b5615c07ea (diff)
parent15fc4d05ece45e236c1cab3947d53f50753c3c16 (diff)
downloadvolse-hubzilla-245080a6d7b86ad2a94c62b02a8591bc70b99632.tar.gz
volse-hubzilla-245080a6d7b86ad2a94c62b02a8591bc70b99632.tar.bz2
volse-hubzilla-245080a6d7b86ad2a94c62b02a8591bc70b99632.zip
Merge https://github.com/redmatrix/redmatrix into pending_merge
Diffstat (limited to 'include')
-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);
}