From 60fa1158b4e16d85dbf4536fe957c64d49481aeb Mon Sep 17 00:00:00 2001 From: hartvig Date: Mon, 19 Jul 2010 10:11:37 +0000 Subject: [PATCH] Fixes 28157, thumbnails are not shown on upload fields [TFS Changeset #73321] --- components/editorControls/uploadfield/uploadField.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/editorControls/uploadfield/uploadField.cs b/components/editorControls/uploadfield/uploadField.cs index 768a3cff3d..8abdea9019 100644 --- a/components/editorControls/uploadfield/uploadField.cs +++ b/components/editorControls/uploadfield/uploadField.cs @@ -372,7 +372,7 @@ namespace umbraco.editorControls bool hasThumb = false; try { - hasThumb = File.Exists(IOHelper.FindFile(fileNameThumb)); + hasThumb = File.Exists(IOHelper.MapPath(IOHelper.FindFile(fileNameThumb))); } catch { } if (hasThumb)