diff options
author | Diva Canto | 2009-09-28 07:53:52 -0700 |
---|---|---|
committer | Diva Canto | 2009-09-28 07:53:52 -0700 |
commit | 3091e5db9d6d46191d52a21ef5c25feb76ed703a (patch) | |
tree | 083ddb18978408c796ea8142b695398f51d5e375 /OpenSim/Grid | |
parent | Added RegionSecret to GridRegion, and corresponding saving/retrieval from DB ... (diff) | |
download | opensim-SC_OLD-3091e5db9d6d46191d52a21ef5c25feb76ed703a.zip opensim-SC_OLD-3091e5db9d6d46191d52a21ef5c25feb76ed703a.tar.gz opensim-SC_OLD-3091e5db9d6d46191d52a21ef5c25feb76ed703a.tar.bz2 opensim-SC_OLD-3091e5db9d6d46191d52a21ef5c25feb76ed703a.tar.xz |
Fixed bug in user server related to region's serverURI.
Diffstat (limited to 'OpenSim/Grid')
-rw-r--r-- | OpenSim/Grid/UserServer.Modules/UserLoginService.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Grid/UserServer.Modules/UserLoginService.cs b/OpenSim/Grid/UserServer.Modules/UserLoginService.cs index 66fc24e..47bbeca 100644 --- a/OpenSim/Grid/UserServer.Modules/UserLoginService.cs +++ b/OpenSim/Grid/UserServer.Modules/UserLoginService.cs | |||
@@ -240,7 +240,7 @@ namespace OpenSim.Grid.UserServer.Modules | |||
240 | rinfo.RegionLocY = (uint)(gregion.RegionLocY / Constants.RegionSize); | 240 | rinfo.RegionLocY = (uint)(gregion.RegionLocY / Constants.RegionSize); |
241 | rinfo.RegionName = gregion.RegionName; | 241 | rinfo.RegionName = gregion.RegionName; |
242 | rinfo.ScopeID = gregion.ScopeID; | 242 | rinfo.ScopeID = gregion.ScopeID; |
243 | rinfo.ServerURI = "http://" + gregion.ExternalHostName + ":" + gregion.HttpPort.ToString(); | 243 | rinfo.ServerURI = gregion.ServerURI; |
244 | 244 | ||
245 | return rinfo; | 245 | return rinfo; |
246 | } | 246 | } |