From 284df892d8adf6a8616b4f748531d1213071504e Mon Sep 17 00:00:00 2001 From: RKrom Date: Fri, 25 Jan 2013 11:45:51 +0000 Subject: [PATCH] Changed to string format instead of using normal string concat. git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@2445 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4 --- GreenshotOfficePlugin/OfficeExport/OutlookEmailExporter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GreenshotOfficePlugin/OfficeExport/OutlookEmailExporter.cs b/GreenshotOfficePlugin/OfficeExport/OutlookEmailExporter.cs index 238c78a6d..2b0e43561 100644 --- a/GreenshotOfficePlugin/OfficeExport/OutlookEmailExporter.cs +++ b/GreenshotOfficePlugin/OfficeExport/OutlookEmailExporter.cs @@ -349,7 +349,7 @@ namespace Greenshot.Interop.Office { hrefEnd = ""; } string htmlImgEmbedded = string.Format("
{0}\"{1}\"
", href, attachmentName, contentID, hrefEnd); - string fallbackBody = "" + htmlImgEmbedded + ""; + string fallbackBody = string.Format("{0}", htmlImgEmbedded); if (bodyString == null) { bodyString = fallbackBody; } else {