From fe8d5abe0a8c51d1a7775d2f08f384cf9bd2d5d7 Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Wed, 27 Feb 2019 20:59:39 -0500 Subject: [PATCH] Replace strong by title format for item title in mod/share --- mod/share.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'];