diff options
author | Tom | 2011-02-03 17:25:55 -0800 |
---|---|---|
committer | Tom | 2011-02-03 17:25:55 -0800 |
commit | 9a9c9644acb4135d168b239f40fd07aafe34f190 (patch) | |
tree | a271df048448030247bf73e75bae00dd6864e23e | |
parent | Add another flag (diff) | |
download | opensim-SC_OLD-9a9c9644acb4135d168b239f40fd07aafe34f190.zip opensim-SC_OLD-9a9c9644acb4135d168b239f40fd07aafe34f190.tar.gz opensim-SC_OLD-9a9c9644acb4135d168b239f40fd07aafe34f190.tar.bz2 opensim-SC_OLD-9a9c9644acb4135d168b239f40fd07aafe34f190.tar.xz |
Repair x-query-string
Diffstat (limited to '')
-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 | } |