From: Hypolite Petovan Date: Thu, 28 Feb 2019 01:59:39 +0000 (-0500) Subject: Replace strong by title format for item title in mod/share X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=fe8d5abe0a8c51d1a7775d2f08f384cf9bd2d5d7;p=friendica.git Replace strong by title format for item title in mod/share --- diff --git a/mod/share.php b/mod/share.php index bb3212ece0..6f368b1d14 100644 --- a/mod/share.php +++ b/mod/share.php @@ -26,7 +26,7 @@ function share_init(App $a) { $o = share_header($item['author-name'], $item['author-link'], $item['author-avatar'], $item['guid'], $item['created'], $item['plink']); if ($item['title']) { - $o .= '[b]'.$item['title'].'[/b]'."\n"; + $o .= '[h3]'.$item['title'].'[/h3]'."\n"; } $o .= $item['body'];