From 240d648b38499b12018b6e986742f67dfd7d8904 Mon Sep 17 00:00:00 2001 From: inga-lovinde <52715130+inga-lovinde@users.noreply.github.com> Date: Wed, 8 Sep 2010 17:21:44 +0000 Subject: [PATCH] .jpe, .jpeg, .jfif, .jif, .svg are allowed extensions now --- Common/UploadManager.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Common/UploadManager.cs b/Common/UploadManager.cs index 426cdf4..e5a8b9c 100644 --- a/Common/UploadManager.cs +++ b/Common/UploadManager.cs @@ -33,6 +33,11 @@ namespace FLocal.Common { private static HashSet allowedExtensions = new HashSet() { "jpg", + "jpe", + "jpeg", + "jfif", + "jif", + "svg", "gif", "png", };