aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Server
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Server')
-rw-r--r--OpenSim/Server/Handlers/Simulation/AgentHandlers.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Server/Handlers/Simulation/AgentHandlers.cs b/OpenSim/Server/Handlers/Simulation/AgentHandlers.cs
index c52a1ab..1c1930a 100644
--- a/OpenSim/Server/Handlers/Simulation/AgentHandlers.cs
+++ b/OpenSim/Server/Handlers/Simulation/AgentHandlers.cs
@@ -156,7 +156,7 @@ namespace OpenSim.Server.Handlers.Simulation
156 string theirVersionStr = args["my_version"].AsString(); 156 string theirVersionStr = args["my_version"].AsString();
157 string[] parts = theirVersionStr.Split(new char[] {'/'}); 157 string[] parts = theirVersionStr.Split(new char[] {'/'});
158 if (parts.Length > 1) 158 if (parts.Length > 1)
159 theirVersion = float.Parse(parts[1]); 159 theirVersion = float.Parse(parts[1], Culture.FormatProvider);
160 } 160 }
161 161
162 if (args.ContainsKey("context")) 162 if (args.ContainsKey("context"))
@@ -266,7 +266,7 @@ namespace OpenSim.Server.Handlers.Simulation
266 266
267 resp["success"] = OSD.FromBoolean(result); 267 resp["success"] = OSD.FromBoolean(result);
268 resp["reason"] = OSD.FromString(reason); 268 resp["reason"] = OSD.FromString(reason);
269 string legacyVersion = String.Format("SIMULATION/{0}", version); 269 string legacyVersion = String.Format(Culture.FormatProvider,"SIMULATION/{0}", version);
270 resp["version"] = OSD.FromString(legacyVersion); 270 resp["version"] = OSD.FromString(legacyVersion);
271 resp["negotiated_inbound_version"] = OSD.FromReal(inboundVersion); 271 resp["negotiated_inbound_version"] = OSD.FromReal(inboundVersion);
272 resp["negotiated_outbound_version"] = OSD.FromReal(outboundVersion); 272 resp["negotiated_outbound_version"] = OSD.FromReal(outboundVersion);