Skip to content

Commit

Permalink
Fix for email stories when article uses wiki text and has autotags.
Browse files Browse the repository at this point in the history
  • Loading branch information
eSilverStrike committed Feb 4, 2019
1 parent 8458f3f commit d8fde38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public_html/lib-common.php
Expand Up @@ -4541,7 +4541,7 @@ function COM_emailUserTopics()

if ($_CONF['emailstorieslength'] > 0) {
if ($S['postmode'] === 'wikitext') {
$articleText = COM_undoSpecialChars(GLText::stripTags(COM_renderWikiText(stripslashes($S['introtext']))));
$articleText = COM_undoSpecialChars(GLText::stripTags(PLG_replaceTags(COM_renderWikiText(stripslashes($S['introtext'])))));
} else {
$articleText = COM_undoSpecialChars(GLText::stripTags(PLG_replaceTags(stripslashes($S['introtext']))));
}
Expand Down

0 comments on commit d8fde38

Please sign in to comment.