]> git.mxchange.org Git - friendica.git/blobdiff - mod/share.php
poller.php: Test for moving to archive, vier-style: notifications fixed
[friendica.git] / mod / share.php
old mode 100644 (file)
new mode 100755 (executable)
index 8a8229e..bba5273
@@ -17,7 +17,9 @@ function share_init(&$a) {
        $o = '';
 
        $o .= '&#x2672; <a href="' . $r[0]['author-link'] . '">' . $r[0]['author-name'] . '</a><br />';
-       $o .= prepare_body($r[0]);
+       if($r[0]['title'])
+               $o .= '<strong>' . $r[0]['title'] . '</strong><br />';
+       $o .= bbcode($r[0]['body'], true);
        echo $o . '<br />';
        killme();  
-}
\ No newline at end of file
+}