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

bulletsim
Diva Canto 2011-05-08 16:51:04 -07:00
parent a650c74d23
commit 3a5e841b0b
1 changed files with 1 additions and 1 deletions

View File

@ -836,7 +836,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))