From 9e54e61a4324769f119a94f480ba88f738ea9bd4 Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Mon, 14 Dec 2009 08:27:16 -0800 Subject: Make the HG map search recognize host names without ports. --- OpenSim/Region/CoreModules/World/WorldMap/MapSearchModule.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'OpenSim') diff --git a/OpenSim/Region/CoreModules/World/WorldMap/MapSearchModule.cs b/OpenSim/Region/CoreModules/World/WorldMap/MapSearchModule.cs index 436f332..be46fa5 100644 --- a/OpenSim/Region/CoreModules/World/WorldMap/MapSearchModule.cs +++ b/OpenSim/Region/CoreModules/World/WorldMap/MapSearchModule.cs @@ -108,7 +108,7 @@ namespace OpenSim.Region.CoreModules.World.WorldMap { // OK, we tried but there are no regions matching that name. // Let's check quickly if this is a domain name, and if so link to it - if (mapName.Contains(".") && mapName.Contains(":")) + if (mapName.Contains(".")) { // It probably is a domain name. Try to link to it. GridRegion regInfo; -- cgit v1.1