Skip to content

Commit 9c3b26d

Browse files
committed
[ticket/17304] Stop using twemoji and rely on system emojis
PHPBB-17304
1 parent aedfc4c commit 9c3b26d

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

textformatter/s9e/factory.php

+1-9
Original file line numberDiff line numberDiff line change
@@ -358,15 +358,7 @@ function ($m)
358358

359359
// Load the Emoji plugin and modify its tag's template to obey viewsmilies
360360
$tag = $configurator->Emoji->getTag();
361-
$tag->template = '<xsl:choose>
362-
<xsl:when test="@tseq">
363-
<img alt="{.}" class="emoji" draggable="false" src="//cdn.jsdelivr.net/gh/twitter/twemoji@latest/assets/svg/{@tseq}.svg"/>
364-
</xsl:when>
365-
<xsl:otherwise>
366-
<img alt="{.}" class="emoji" draggable="false" src="//cdn.jsdelivr.net/gh/twitter/twemoji@latest/assets/svg/{@seq}.svg"/>
367-
</xsl:otherwise>
368-
</xsl:choose>';
369-
$tag->template = '<xsl:choose><xsl:when test="$S_VIEWSMILIES">' . str_replace('class="emoji"', 'class="emoji smilies"', $tag->template) . '</xsl:when><xsl:otherwise><xsl:value-of select="."/></xsl:otherwise></xsl:choose>';
361+
$tag->template = '<span class="emoji"><xsl:value-of select="."/></span>';
370362

371363
/**
372364
* Modify the s9e\TextFormatter configurator after the default settings are set

0 commit comments

Comments
 (0)