diff --git a/mailnews/mime/cthandlers/pgpmime/nsPgpMimeProxy.cpp b/mailnews/mime/cthandlers/pgpmime/nsPgpMimeProxy.cpp index de4ec31745..5c56a18096 100644 --- a/mailnews/mime/cthandlers/pgpmime/nsPgpMimeProxy.cpp +++ b/mailnews/mime/cthandlers/pgpmime/nsPgpMimeProxy.cpp @@ -356,14 +356,14 @@ nsPgpMimeProxy::Finish() { } else { nsCString temp; - temp.Append("Content-Type: text/html\r\nCharset: UTF-8\r\n\r\n"); - temp.Append("
"); - temp.Append("
"); + temp.AppendLiteral("Content-Type: text/html; Charset=utf-8\r\n\r\n"); + temp.AppendLiteral("
"); + temp.AppendLiteral("
"); nsCString tString; PgpMimeGetNeedsAddonString(tString); temp.Append(tString); - temp.Append("

\r\n"); + temp.AppendLiteral("

\r\n"); PR_SetError(0,0); int status = mOutputFun(temp.get(), temp.Length(), mOutputClosure);