# HG changeset patch # User Sebastien Jodogne # Date 1486044513 -3600 # Node ID b8e07269da72ea31b0f069c95fd9ee2bbf5ad3bb # Parent de1ba22fd28a82103c472b9ae45b0554fe6d2b8f revert commit #69b0f4e, as quoting is only OPTIONAL, so we preserve backward compatibility diff -r de1ba22fd28a -r b8e07269da72 Core/HttpServer/HttpOutput.cpp --- a/Core/HttpServer/HttpOutput.cpp Wed Feb 01 16:26:57 2017 +0100 +++ b/Core/HttpServer/HttpOutput.cpp Thu Feb 02 15:08:33 2017 +0100 @@ -442,7 +442,7 @@ multipartBoundary_ = SystemToolbox::GenerateUuid(); multipartContentType_ = contentType; - header += "Content-Type: multipart/" + subType + "; type=\"" + contentType + "\"; boundary=" + multipartBoundary_ + "\r\n\r\n"; + header += "Content-Type: multipart/" + subType + "; type=" + contentType + "; boundary=" + multipartBoundary_ + "\r\n\r\n"; stream_.Send(true, header.c_str(), header.size()); state_ = State_WritingMultipart;