diff options
author | Friendika <info@friendika.com> | 2011-06-01 06:41:12 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-06-01 06:41:12 -0700 |
commit | 969a25eab244170a2c0f311c838dcf09f1281388 (patch) | |
tree | 220bd7124991eab2a58f6b81dab4e17d46bf5fbe | |
parent | fc34641d4a69580a4e7fd5c3806c22d009d5d037 (diff) | |
download | volse-hubzilla-969a25eab244170a2c0f311c838dcf09f1281388.tar.gz volse-hubzilla-969a25eab244170a2c0f311c838dcf09f1281388.tar.bz2 volse-hubzilla-969a25eab244170a2c0f311c838dcf09f1281388.zip |
add titles to shared items if available
-rw-r--r-- | mod/share.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mod/share.php b/mod/share.php index f355a842a..bba527342 100644 --- a/mod/share.php +++ b/mod/share.php @@ -17,6 +17,8 @@ function share_init(&$a) { $o = ''; $o .= '♲ <a href="' . $r[0]['author-link'] . '">' . $r[0]['author-name'] . '</a><br />'; + if($r[0]['title']) + $o .= '<strong>' . $r[0]['title'] . '</strong><br />'; $o .= bbcode($r[0]['body'], true); echo $o . '<br />'; killme(); |