diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-04-04 18:25:01 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-04-04 18:25:01 +0200 |
commit | 82fa935d5d1d1665b4aa30daef775df87e506f88 (patch) | |
tree | 2585a9fc5f4200d378f83213e1c133faef2de9ad /phpBB/includes | |
parent | e00a4b411d7723447d140c8ea18f9d9b812a3776 (diff) | |
parent | 8ee37def81f4ba571adb51ab6e59623fde478449 (diff) | |
download | forums-82fa935d5d1d1665b4aa30daef775df87e506f88.tar forums-82fa935d5d1d1665b4aa30daef775df87e506f88.tar.gz forums-82fa935d5d1d1665b4aa30daef775df87e506f88.tar.bz2 forums-82fa935d5d1d1665b4aa30daef775df87e506f88.tar.xz forums-82fa935d5d1d1665b4aa30daef775df87e506f88.zip |
Merge remote-tracking branch 'vsephpbb/ticket/11962' into develop-ascraeus
* vsephpbb/ticket/11962:
[ticket/11962] Resize posted images to fit and give them a class
Diffstat (limited to 'phpBB/includes')
-rw-r--r-- | phpBB/includes/bbcode.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/bbcode.php b/phpBB/includes/bbcode.php index 683fbf0fd2..7b5d8449b3 100644 --- a/phpBB/includes/bbcode.php +++ b/phpBB/includes/bbcode.php @@ -404,7 +404,7 @@ class bbcode 'i_close' => '</span>', 'u_open' => '<span style="text-decoration: underline">', 'u_close' => '</span>', - 'img' => '<img src="$1" alt="' . $user->lang['IMAGE'] . '" />', + 'img' => '<img src="$1" class="postimage" alt="' . $user->lang['IMAGE'] . '" />', 'size' => '<span style="font-size: $1%; line-height: normal">$2</span>', 'color' => '<span style="color: $1">$2</span>', 'email' => '<a href="mailto:$1">$2</a>' |