From: Mikael Nordfeldth Date: Wed, 3 Feb 2016 18:32:51 +0000 (+0100) Subject: Forgot a break in a switch when rendering attachments. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=d5ecbd05a1c2af5fe49733574d6b0b7c1a45e6cb;p=quix0rs-gnu-social.git Forgot a break in a switch when rendering attachments. --- 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'))) {