diff options
author | Justin Clarke Casey | 2009-04-29 18:14:34 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2009-04-29 18:14:34 +0000 |
commit | 978f98fe7e21a2c540bf75aebc98fe6c3d4e2d19 (patch) | |
tree | 0af1c236ea73edaca481975ad8f6ac083c29e8ef | |
parent | * Actually change the default oar file name to region.oar instead of scene.oa... (diff) | |
download | opensim-SC_OLD-978f98fe7e21a2c540bf75aebc98fe6c3d4e2d19.zip opensim-SC_OLD-978f98fe7e21a2c540bf75aebc98fe6c3d4e2d19.tar.gz opensim-SC_OLD-978f98fe7e21a2c540bf75aebc98fe6c3d4e2d19.tar.bz2 opensim-SC_OLD-978f98fe7e21a2c540bf75aebc98fe6c3d4e2d19.tar.xz |
* Apply http://opensimulator.org/mantis/view.php?id=3554
* Stop converting serviceURL to all lower case.
* Thanks mcortez
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/XmlRpcGroupData.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/XmlRpcGroupData.cs b/OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/XmlRpcGroupData.cs index 23dd52d..c380232 100644 --- a/OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/XmlRpcGroupData.cs +++ b/OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/XmlRpcGroupData.cs | |||
@@ -64,7 +64,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.XmlRpcGroups | |||
64 | 64 | ||
65 | public XmlRpcGroupDataProvider(string serviceURL, bool disableKeepAlive) | 65 | public XmlRpcGroupDataProvider(string serviceURL, bool disableKeepAlive) |
66 | { | 66 | { |
67 | m_serviceURL = serviceURL.Trim().ToLower(); | 67 | m_serviceURL = serviceURL.Trim(); |
68 | m_disableKeepAlive = disableKeepAlive; | 68 | m_disableKeepAlive = disableKeepAlive; |
69 | 69 | ||
70 | if ((serviceURL == null) || | 70 | if ((serviceURL == null) || |