aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/textformatter
diff options
context:
space:
mode:
authorJoshyPHP <s9e.dev@gmail.com>2016-11-27 13:30:15 +0100
committerJoshyPHP <s9e.dev@gmail.com>2016-11-27 13:30:15 +0100
commit88c921be23a2cddbfb3ac7272eb14305664b6542 (patch)
tree08e786237cb300617a84d4d03e8b7bd02090e008 /phpBB/phpbb/textformatter
parent9432662c372df946fa9d5b810a5d4bd9896acc84 (diff)
downloadforums-88c921be23a2cddbfb3ac7272eb14305664b6542.tar
forums-88c921be23a2cddbfb3ac7272eb14305664b6542.tar.gz
forums-88c921be23a2cddbfb3ac7272eb14305664b6542.tar.bz2
forums-88c921be23a2cddbfb3ac7272eb14305664b6542.tar.xz
forums-88c921be23a2cddbfb3ac7272eb14305664b6542.zip
[ticket/14873] Added width/height attributes to smilies
PHPBB3-14873
Diffstat (limited to 'phpBB/phpbb/textformatter')
-rw-r--r--phpBB/phpbb/textformatter/s9e/factory.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/textformatter/s9e/factory.php b/phpBB/phpbb/textformatter/s9e/factory.php
index f62daefdd9..a310c67359 100644
--- a/phpBB/phpbb/textformatter/s9e/factory.php
+++ b/phpBB/phpbb/textformatter/s9e/factory.php
@@ -311,7 +311,7 @@ class factory implements \phpbb\textformatter\cache_interface
{
$configurator->Emoticons->set(
$row['code'],
- '<img class="smilies" src="{$T_SMILIES_PATH}/' . htmlspecialchars($row['smiley_url']) . '" alt="{.}" title="' . htmlspecialchars($row['emotion']) . '"/>'
+ '<img class="smilies" src="{$T_SMILIES_PATH}/' . htmlspecialchars($row['smiley_url']) . '" width="' . $row['smiley_width'] . '" height="' . $row['smiley_height'] . '" alt="{.}" title="' . htmlspecialchars($row['emotion']) . '"/>'
);
}