From 969a25eab244170a2c0f311c838dcf09f1281388 Mon Sep 17 00:00:00 2001 From: Friendika Date: Wed, 1 Jun 2011 06:41:12 -0700 Subject: [PATCH] add titles to shared items if available --- mod/share.php | 2 ++ 1 file changed, 2 insertions(+) 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();