diff options
author | friendica <info@friendica.com> | 2013-03-11 18:22:40 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-03-11 18:22:40 -0700 |
commit | f988213af83d57dbef00ab275929ce70faadb79b (patch) | |
tree | e1ce11db9f661e9425571e7a43c5ff166b54ddc7 /include/bbcode.php | |
parent | f09f2998dc2afecf8c2d632512b0e9850808749e (diff) | |
download | volse-hubzilla-f988213af83d57dbef00ab275929ce70faadb79b.tar.gz volse-hubzilla-f988213af83d57dbef00ab275929ce70faadb79b.tar.bz2 volse-hubzilla-f988213af83d57dbef00ab275929ce70faadb79b.zip |
fix typos
Diffstat (limited to 'include/bbcode.php')
-rw-r--r-- | include/bbcode.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/bbcode.php b/include/bbcode.php index 84c9bda71..758a0891c 100644 --- a/include/bbcode.php +++ b/include/bbcode.php @@ -159,7 +159,7 @@ function bb_ShareAttributes($match) { $headline .= "</div>"; $text = $headline . '<div class="reshared-content">' . trim($match[2]) . '</div>'; - logger('bbshare: ' . $text); + return($text); } @@ -185,7 +185,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>: <br />»".$match[2]."«"; + $text = "<br />".html_entity_decode("♲ ", ENT_QUOTES, 'UTF-8').' <a href="'.$profile.'">'.$author."</a>: div class=\"reshared-content\">" .$match[2]."</div>"; return($text); } |