diff options
author | Friendika <info@friendika.com> | 2011-04-10 03:00:29 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-04-10 03:00:29 -0700 |
commit | bf865f0210aee4c6742b10bb63cd05f0de9b9d12 (patch) | |
tree | 28fcd894fd9bf0d3f89152e75a842d8248259108 /mod | |
parent | 6b66ac818364a4cb5592a0f520396a08feab804f (diff) | |
download | volse-hubzilla-bf865f0210aee4c6742b10bb63cd05f0de9b9d12.tar.gz volse-hubzilla-bf865f0210aee4c6742b10bb63cd05f0de9b9d12.tar.bz2 volse-hubzilla-bf865f0210aee4c6742b10bb63cd05f0de9b9d12.zip |
bug #34, line breaks double in retweet/share
Diffstat (limited to 'mod')
-rw-r--r-- | mod/share.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/share.php b/mod/share.php index 8a8229e8a..94cd035b4 100644 --- a/mod/share.php +++ b/mod/share.php @@ -17,7 +17,7 @@ function share_init(&$a) { $o = ''; $o .= '♲ <a href="' . $r[0]['author-link'] . '">' . $r[0]['author-name'] . '</a><br />'; - $o .= prepare_body($r[0]); + $o .= bbcode($r[0]['body'], true); echo $o . '<br />'; killme(); }
\ No newline at end of file |