From: Friendika Date: Wed, 1 Jun 2011 13:41:12 +0000 (-0700) Subject: add titles to shared items if available X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=969a25eab244170a2c0f311c838dcf09f1281388;p=friendica.git add titles to shared items if available --- diff --git a/mod/share.php b/mod/share.php index f355a842a7..bba527342a 100644 --- a/mod/share.php +++ b/mod/share.php @@ -17,6 +17,8 @@ function share_init(&$a) { $o = ''; $o .= '♲ ' . $r[0]['author-name'] . '
'; + if($r[0]['title']) + $o .= '' . $r[0]['title'] . '
'; $o .= bbcode($r[0]['body'], true); echo $o . '
'; killme();