Fixes mantis #5923

0.7.3-post-fixes
Diva Canto 2012-03-08 15:55:43 -08:00
parent 3e88fc8aad
commit 74a13f7e3b
1 changed files with 3 additions and 2 deletions

View File

@ -296,9 +296,10 @@ namespace OpenSim.Services.HypergridService
aCircuit.firstname = account.FirstName;
aCircuit.lastname = account.LastName;
}
if (account == null && !aCircuit.lastname.StartsWith("@"))
if (account == null)
{
aCircuit.firstname = aCircuit.firstname + "." + aCircuit.lastname;
if (!aCircuit.lastname.StartsWith("@"))
aCircuit.firstname = aCircuit.firstname + "." + aCircuit.lastname;
try
{
Uri uri = new Uri(aCircuit.ServiceURLs["HomeURI"].ToString());