git-svn-id: https://svn.webkit.org/repository/webkit/trunk@21709
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
int id;
// handle and perform a 'POST' request
if (handle->method() == "POST") {
- job->d->request.setValue(QLatin1String("Content-Type"), QLatin1String("application/x-www-form-urlencoded"));
-
DeprecatedString pd = handle->postData()->flattenToString().deprecatedString();
job->d->postData = QByteArray(pd.ascii(), pd.length());
job->d->request.setValue(QLatin1String("content-length"), QString::number(job->d->postData.size()));
+2007-05-24 Simon Hausmann <hausmann@kde.org>
+
+ Reviewed by Zack.
+
+ Fix multipart/form-data HTTP POSTs. The content-type wasn't set
+ correctly. Fortunately WebCore does it already, so there's no need
+ for us to do it since we already transfer all HTTP header fields :)
+
+ * Api/qwebnetworkinterface.cpp:
+ (QWebNetworkManager::add):
+
2007-05-23 Simon Hausmann <hausmann@kde.org>
Reviewed by Zack, idea from Lars.