aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTobias Diekershoff <tobias.diekershoff@gmx.net>2011-06-01 18:34:10 +0200
committerTobias Diekershoff <tobias.diekershoff@gmx.net>2011-06-01 18:34:10 +0200
commitef77d53782d0bbd0bf7ee2b823726ab5d3f77f5a (patch)
tree70a2e5d9b07824fb65ad470cecd5c814ee9fbda0
parent2413a6b422d5c49024d9c2c9cff79cbc82ba3a56 (diff)
parent969a25eab244170a2c0f311c838dcf09f1281388 (diff)
downloadvolse-hubzilla-ef77d53782d0bbd0bf7ee2b823726ab5d3f77f5a.tar.gz
volse-hubzilla-ef77d53782d0bbd0bf7ee2b823726ab5d3f77f5a.tar.bz2
volse-hubzilla-ef77d53782d0bbd0bf7ee2b823726ab5d3f77f5a.zip
Merge branch 'master' of git://github.com/friendika/friendika
-rw-r--r--mod/share.php2
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 .= '&#x2672; <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();