Make the HG map search recognize host names without ports.

mysql-performance
Diva Canto 2009-12-14 08:27:16 -08:00
parent 0813dc8c1d
commit 9e54e61a43
1 changed files with 1 additions and 1 deletions

View File

@ -108,7 +108,7 @@ namespace OpenSim.Region.CoreModules.World.WorldMap
{ {
// OK, we tried but there are no regions matching that name. // 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 // 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. // It probably is a domain name. Try to link to it.
GridRegion regInfo; GridRegion regInfo;