diff options
author | Diva Canto | 2012-03-15 14:38:22 -0700 |
---|---|---|
committer | Diva Canto | 2012-03-15 14:38:22 -0700 |
commit | 09ff121654ca3d3444571507030435020e64133a (patch) | |
tree | b57e59c60aaf85903f8f7c668d43c58c5d579b4b | |
parent | Revert "More hacking around viewer bug" (diff) | |
download | opensim-SC_OLD-09ff121654ca3d3444571507030435020e64133a.zip opensim-SC_OLD-09ff121654ca3d3444571507030435020e64133a.tar.gz opensim-SC_OLD-09ff121654ca3d3444571507030435020e64133a.tar.bz2 opensim-SC_OLD-09ff121654ca3d3444571507030435020e64133a.tar.xz |
Revert "Hack around https://jira.secondlife.com/browse/VWR-28570"
This reverts commit d7651a389e0a5bbd1a1bfc95fa0cb8823b839dad.
-rw-r--r-- | OpenSim/Region/CoreModules/World/WorldMap/MapSearchModule.cs | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/OpenSim/Region/CoreModules/World/WorldMap/MapSearchModule.cs b/OpenSim/Region/CoreModules/World/WorldMap/MapSearchModule.cs index c8c80db..657975b 100644 --- a/OpenSim/Region/CoreModules/World/WorldMap/MapSearchModule.cs +++ b/OpenSim/Region/CoreModules/World/WorldMap/MapSearchModule.cs | |||
@@ -92,19 +92,7 @@ namespace OpenSim.Region.CoreModules.World.WorldMap | |||
92 | return; | 92 | return; |
93 | } | 93 | } |
94 | 94 | ||
95 | //m_log.DebugFormat("MAP NAME=({0})", mapName); | 95 | //m_log.DebugFormat("MAP NAME=({0})", mapName); |
96 | |||
97 | // Hack to get around the fact that ll V3 now drops the port from the | ||
98 | // map name. See https://jira.secondlife.com/browse/VWR-28570 | ||
99 | // | ||
100 | // Caller, use this form instead: | ||
101 | // secondlife://mygrid.com|8002+Region+Name/128/128 | ||
102 | // the hacks we do with this viewer... | ||
103 | // | ||
104 | if (mapName.Contains("|")) | ||
105 | mapName = mapName.Replace('|', ':'); | ||
106 | if (mapName.Contains("+")) | ||
107 | mapName = mapName.Replace('+', ' '); | ||
108 | 96 | ||
109 | // try to fetch from GridServer | 97 | // try to fetch from GridServer |
110 | List<GridRegion> regionInfos = m_scene.GridService.GetRegionsByName(m_scene.RegionInfo.ScopeID, mapName, 20); | 98 | List<GridRegion> regionInfos = m_scene.GridService.GetRegionsByName(m_scene.RegionInfo.ScopeID, mapName, 20); |