Repair x-query-string

avinationmerge
Tom 2011-02-03 17:25:55 -08:00
parent 595891409c
commit 9a9c9644ac
1 changed files with 1 additions and 1 deletions

View File

@ -444,7 +444,7 @@ namespace OpenSim.Region.CoreModules.Scripting.LSLHttp
if (request.ContainsKey(key))
{
string val = (String)request[key];
if (key == "")
if (key != "")
{
queryString = queryString + key + "=" + val + "&";
}