From 6a9574bab9f6ac943860a3aee47f18d2edc1fca5 Mon Sep 17 00:00:00 2001 From: James Cole Date: Sat, 18 Jul 2015 19:49:35 +0200 Subject: [PATCH] Allow jpeg and PDF. --- app/Helpers/Attachments/AttachmentHelper.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Helpers/Attachments/AttachmentHelper.php b/app/Helpers/Attachments/AttachmentHelper.php index 11c32343a3..8390316bce 100644 --- a/app/Helpers/Attachments/AttachmentHelper.php +++ b/app/Helpers/Attachments/AttachmentHelper.php @@ -20,7 +20,7 @@ class AttachmentHelper implements AttachmentHelperInterface // move to config: protected $maxUploadSize = 1048576; // 1MB per file - protected $allowedMimes = ['image/png']; + protected $allowedMimes = ['image/png','image/jpeg','application/pdf']; public $errors; public $messages;