diff options
author | Matt Friedman <maf675@gmail.com> | 2015-08-26 10:05:14 -0700 |
---|---|---|
committer | Matt Friedman <maf675@gmail.com> | 2015-08-26 14:08:59 -0700 |
commit | e19d446881ba98d8a1082732585da3f6d4bd262f (patch) | |
tree | 3fc3b563391b63d1b9e9025245ceff0fcec25ca2 /phpBB/phpbb/textformatter/s9e/factory.php | |
parent | 0a5f7d2e5114f66b373ff25cf29552a29b1dda50 (diff) | |
download | forums-e19d446881ba98d8a1082732585da3f6d4bd262f.tar forums-e19d446881ba98d8a1082732585da3f6d4bd262f.tar.gz forums-e19d446881ba98d8a1082732585da3f6d4bd262f.tar.bz2 forums-e19d446881ba98d8a1082732585da3f6d4bd262f.tar.xz forums-e19d446881ba98d8a1082732585da3f6d4bd262f.zip |
[ticket/14128] Fix img bbcode regression, lost postimage class
PHPBB3-14128
Diffstat (limited to 'phpBB/phpbb/textformatter/s9e/factory.php')
-rw-r--r-- | phpBB/phpbb/textformatter/s9e/factory.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/textformatter/s9e/factory.php b/phpBB/phpbb/textformatter/s9e/factory.php index 4a04b34cd8..63b23d2fd0 100644 --- a/phpBB/phpbb/textformatter/s9e/factory.php +++ b/phpBB/phpbb/textformatter/s9e/factory.php @@ -104,7 +104,7 @@ class factory implements \phpbb\textformatter\cache_interface 'b' => '<span style="font-weight: bold"><xsl:apply-templates/></span>', 'i' => '<span style="font-style: italic"><xsl:apply-templates/></span>', 'u' => '<span style="text-decoration: underline"><xsl:apply-templates/></span>', - 'img' => '<img src="{IMAGEURL}" alt="{L_IMAGE}"/>', + 'img' => '<img src="{IMAGEURL}" class="postimage" alt="{L_IMAGE}"/>', 'size' => '<span style="font-size: {FONTSIZE}%; line-height: normal"><xsl:apply-templates/></span>', 'color' => '<span style="color: {COLOR}"><xsl:apply-templates/></span>', 'email' => '<a> |