Add explicit width / height to full size image attachments
authorTim Düsterhus <duesterhus@woltlab.com>
Mon, 26 Apr 2021 14:49:59 +0000 (16:49 +0200)
committerTim Düsterhus <duesterhus@woltlab.com>
Mon, 26 Apr 2021 14:49:59 +0000 (16:49 +0200)
wcfsetup/install/files/lib/system/bbcode/AttachmentBBCode.class.php

index d1de184637b3f008cc0351b48006804157902d45..ca6163326b41597fde66272efb901f4a6f8033c3 100644 (file)
@@ -116,7 +116,7 @@ class AttachmentBBCode extends AbstractBBCode
                     if ($parser instanceof HtmlBBCodeParser && $parser->getIsGoogleAmp()) {
                         $result = '<amp-img src="' . $source . '" width="' . $attachment->width . '" height="' . $attachment->height . '" layout="responsive" alt="">';
                     } else {
-                        $result = '<img src="' . $source . '" alt="">';
+                        $result = '<img src="' . $source . '" width="' . $attachment->width . '" height="' . $attachment->height . '" alt="">';
                     }
 
                     if (!$hasParentLink && ($attachment->width > ATTACHMENT_THUMBNAIL_WIDTH || $attachment->height > ATTACHMENT_THUMBNAIL_HEIGHT)) {