* minor: route create user through underlying super class method rather than calling communications manager directly

0.6.0-stable
Justin Clarke Casey 2008-07-29 18:01:12 +00:00
parent e595959d97
commit aa59dfb1d2
2 changed files with 2 additions and 7 deletions

View File

@ -701,7 +701,7 @@ namespace OpenSim
if (null == m_commsManager.UserService.GetUserProfile(firstName, lastName))
{
m_commsManager.AddUser(firstName, lastName, password, regX, regY);
CreateUser(firstName, lastName, password, regX, regY);
}
else
{

View File

@ -437,7 +437,7 @@ namespace OpenSim
public LLUUID CreateUser(string tempfirstname, string templastname, string tempPasswd, uint regX, uint regY)
{
return m_commsManager.AddUser(tempfirstname,templastname,tempPasswd,regX,regY);
return m_commsManager.AddUser(tempfirstname, templastname, tempPasswd, regX, regY);
}
/// <summary>
@ -584,7 +584,6 @@ namespace OpenSim
storageManager, m_httpServer,
m_moduleLoader, m_dumpAssetsToFile, m_physicalPrim, m_see_into_region_from_neighbor, m_config.Source,
m_version);
}
public void handleRestartRegion(RegionInfo whichRegion)
@ -735,7 +734,3 @@ namespace OpenSim
}
}
}