git-svn-id: https://svn.webkit.org/repository/webkit/trunk@21638
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
int id;
// handle and perform a 'POST' request
if (handle->method() == "POST") {
- job->d->request.setValue(QLatin1String("PropagateHttpHeader"), QLatin1String("true"));
- job->d->request.setValue(QLatin1String("content-type"), QLatin1String("Content-Type: application/x-www-form-urlencoded"));
+ 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());
+2007-05-22 Simon Hausmann <hausmann@kde.org>
+
+ Reviewed by Lars.
+
+ * Api/qwebnetworkinterface.cpp:
+ (QWebNetworkManager::add): Fix http headers for POST.
+
2007-05-21 Lars Knoll <lars@trolltech.com>
Reviewed by Simon