diff options
author | Melanie Thielker | 2008-08-14 16:48:51 +0000 |
---|---|---|
committer | Melanie Thielker | 2008-08-14 16:48:51 +0000 |
commit | 35aeb9010a860fa9a90acdbe2278de28923d1de3 (patch) | |
tree | 1bd6c1d9f786f6233d084058193122f3b562791b /OpenSim/Data/RegionProfileData.cs | |
parent | Add the UserStore migrations to the TP fixes patch (diff) | |
download | opensim-SC_OLD-35aeb9010a860fa9a90acdbe2278de28923d1de3.zip opensim-SC_OLD-35aeb9010a860fa9a90acdbe2278de28923d1de3.tar.gz opensim-SC_OLD-35aeb9010a860fa9a90acdbe2278de28923d1de3.tar.bz2 opensim-SC_OLD-35aeb9010a860fa9a90acdbe2278de28923d1de3.tar.xz |
Mantis #1953
Thank you, HomerHorwitz, for a patch that changes login location handling
to use the sim UUID if it has already been stored.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Data/RegionProfileData.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Data/RegionProfileData.cs b/OpenSim/Data/RegionProfileData.cs index f6172b9..9549b80 100644 --- a/OpenSim/Data/RegionProfileData.cs +++ b/OpenSim/Data/RegionProfileData.cs | |||
@@ -171,7 +171,7 @@ namespace OpenSim.Data | |||
171 | /// <summary> | 171 | /// <summary> |
172 | /// Request sim profile information from a grid server, by Region UUID | 172 | /// Request sim profile information from a grid server, by Region UUID |
173 | /// </summary> | 173 | /// </summary> |
174 | /// <param name="region_uuid">The region UUID to look for</param> | 174 | /// <param name="region_UUID">The region UUID to look for</param> |
175 | /// <param name="gridserver_url"></param> | 175 | /// <param name="gridserver_url"></param> |
176 | /// <param name="gridserver_sendkey"></param> | 176 | /// <param name="gridserver_sendkey"></param> |
177 | /// <param name="gridserver_recvkey"></param> | 177 | /// <param name="gridserver_recvkey"></param> |
@@ -180,7 +180,7 @@ namespace OpenSim.Data | |||
180 | public static RegionProfileData RequestSimProfileData(LLUUID region_uuid, Uri gridserver_url, | 180 | public static RegionProfileData RequestSimProfileData(LLUUID region_uuid, Uri gridserver_url, |
181 | string gridserver_sendkey, string gridserver_recvkey) | 181 | string gridserver_sendkey, string gridserver_recvkey) |
182 | { | 182 | { |
183 | return RequestSimData(gridserver_url, gridserver_sendkey, "region_uuid", region_uuid.UUID.ToString()); | 183 | return RequestSimData(gridserver_url, gridserver_sendkey, "region_UUID", region_uuid.UUID.ToString()); |
184 | } | 184 | } |
185 | 185 | ||
186 | /// <summary> | 186 | /// <summary> |