X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fshare.php;h=bba527342aaf7e5bab10f2656496966e760127d9;hb=1df892ebbce59ac6293eacbe065ebc71826b4d85;hp=8a8229e8a19f1f7a1a32e907b8a4471dfc686e2a;hpb=f4f5095e19badcc85453182b86bff97f57228257;p=friendica.git diff --git a/mod/share.php b/mod/share.php index 8a8229e8a1..bba527342a 100644 --- a/mod/share.php +++ b/mod/share.php @@ -17,7 +17,9 @@ function share_init(&$a) { $o = ''; $o .= '♲ ' . $r[0]['author-name'] . '
'; - $o .= prepare_body($r[0]); + if($r[0]['title']) + $o .= '' . $r[0]['title'] . '
'; + $o .= bbcode($r[0]['body'], true); echo $o . '
'; killme(); -} \ No newline at end of file +}