Floating of attachments in simplified HTML did not work properly
authorMarcel Werk <burntime@woltlab.com>
Tue, 29 Mar 2022 12:36:13 +0000 (14:36 +0200)
committerMarcel Werk <burntime@woltlab.com>
Tue, 29 Mar 2022 12:36:13 +0000 (14:36 +0200)
wcfsetup/install/files/lib/system/bbcode/AttachmentBBCode.class.php

index 123b2227631b4cc94d8e15c76e9319b5969ad04b..373e96d32e129a5249bab5e99d3c8d3855a7a8d2 100644 (file)
@@ -163,6 +163,8 @@ class AttachmentBBCode extends AbstractBBCode
                             'Attachment',
                             ['object' => $attachment]
                         )) . '" title="' . StringUtil::encodeHTML($attachment->filename) . '" class="embeddedAttachmentLink jsImageViewer' . ($class ? ' ' . $class : '') . '">' . $result . '</a>';
+                    } else {
+                        $result = '<span' . ($class ? (' class="' . $class . '"') : '') . '>' . $result . '</span>';
                     }
                 }