Replace strong by title format for item title in mod/share

This commit is contained in:
Hypolite Petovan 2019-02-27 20:59:39 -05:00
parent fb965f4d81
commit fe8d5abe0a
1 changed files with 1 additions and 1 deletions

View File

@ -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']); $o = share_header($item['author-name'], $item['author-link'], $item['author-avatar'], $item['guid'], $item['created'], $item['plink']);
if ($item['title']) { if ($item['title']) {
$o .= '[b]'.$item['title'].'[/b]'."\n"; $o .= '[h3]'.$item['title'].'[/h3]'."\n";
} }
$o .= $item['body']; $o .= $item['body'];