Fix content-type to be application/x-www-form-urlencoded

0.7.1-dev
Diva Canto 2011-05-08 16:51:04 -07:00
parent 785e4852cc
commit d9607f904a
1 changed files with 1 additions and 1 deletions

View File

@ -809,7 +809,7 @@ namespace OpenSim.Framework
{
if ((verb == "POST") || (verb == "PUT"))
{
request.ContentType = "text/www-form-urlencoded";
request.ContentType = "application/x-www-form-urlencoded";
int length = 0;
using (StreamWriter writer = new StreamWriter(buffer))