diff options
author | UbitUmarov | 2018-09-26 22:32:34 +0100 |
---|---|---|
committer | UbitUmarov | 2018-09-26 22:32:34 +0100 |
commit | 37dcb8722c8bdb110dc9ad2f8e330dd93cdf402c (patch) | |
tree | abc1c4e746f65d5e3b72666fee23a0523bb41d66 /OpenSim/Services | |
parent | mantis 8372: replace XMLRPC.dll with utf8 fix (diff) | |
download | opensim-SC-37dcb8722c8bdb110dc9ad2f8e330dd93cdf402c.zip opensim-SC-37dcb8722c8bdb110dc9ad2f8e330dd93cdf402c.tar.gz opensim-SC-37dcb8722c8bdb110dc9ad2f8e330dd93cdf402c.tar.bz2 opensim-SC-37dcb8722c8bdb110dc9ad2f8e330dd93cdf402c.tar.xz |
make sure Culture is right on some spots
Diffstat (limited to 'OpenSim/Services')
-rw-r--r-- | OpenSim/Services/Connectors/Simulation/SimulationServiceConnector.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Services/Connectors/Simulation/SimulationServiceConnector.cs b/OpenSim/Services/Connectors/Simulation/SimulationServiceConnector.cs index 03f6fe6..6504fdc 100644 --- a/OpenSim/Services/Connectors/Simulation/SimulationServiceConnector.cs +++ b/OpenSim/Services/Connectors/Simulation/SimulationServiceConnector.cs | |||
@@ -347,8 +347,8 @@ namespace OpenSim.Services.Connectors.Simulation | |||
347 | String[] parts = versionString.Split(new char[] {'/'}); | 347 | String[] parts = versionString.Split(new char[] {'/'}); |
348 | if (parts.Length > 1) | 348 | if (parts.Length > 1) |
349 | { | 349 | { |
350 | ctx.InboundVersion = float.Parse(parts[1]); | 350 | ctx.InboundVersion = float.Parse(parts[1], Culture.FormatProvider); |
351 | ctx.OutboundVersion = float.Parse(parts[1]); | 351 | ctx.OutboundVersion = float.Parse(parts[1], Culture.FormatProvider); |
352 | } | 352 | } |
353 | } | 353 | } |
354 | 354 | ||