From d5ecbd05a1c2af5fe49733574d6b0b7c1a45e6cb Mon Sep 17 00:00:00 2001 From: Mikael Nordfeldth Date: Wed, 3 Feb 2016 19:32:51 +0100 Subject: [PATCH] Forgot a break in a switch when rendering attachments. --- lib/attachmentlistitem.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/attachmentlistitem.php b/lib/attachmentlistitem.php index 291cf685d1..e6163ecc92 100644 --- a/lib/attachmentlistitem.php +++ b/lib/attachmentlistitem.php @@ -171,6 +171,7 @@ class AttachmentListItem extends Widget switch ($this->attachment->mimetype) { case 'text/plain': $this->element('div', ['class'=>'e-content plaintext'], file_get_contents($this->attachment->getPath())); + break; case 'text/html': if (!empty($this->attachment->filename) && (GNUsocial::isAjax() || common_config('attachments', 'show_html'))) {