diff options
-rw-r--r-- | OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs b/OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs index 89f5da3..66eb747 100644 --- a/OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs +++ b/OpenSim/Region/CoreModules/Scripting/LSLHttp/UrlModule.cs | |||
@@ -444,7 +444,7 @@ namespace OpenSim.Region.CoreModules.Scripting.LSLHttp | |||
444 | if (request.ContainsKey(key)) | 444 | if (request.ContainsKey(key)) |
445 | { | 445 | { |
446 | string val = (String)request[key]; | 446 | string val = (String)request[key]; |
447 | if (key == "") | 447 | if (key != "") |
448 | { | 448 | { |
449 | queryString = queryString + key + "=" + val + "&"; | 449 | queryString = queryString + key + "=" + val + "&"; |
450 | } | 450 | } |