* minor: route create user through underlying super class method rather than calling communications manager directly
parent
e595959d97
commit
aa59dfb1d2
|
@ -701,7 +701,7 @@ namespace OpenSim
|
||||||
|
|
||||||
if (null == m_commsManager.UserService.GetUserProfile(firstName, lastName))
|
if (null == m_commsManager.UserService.GetUserProfile(firstName, lastName))
|
||||||
{
|
{
|
||||||
m_commsManager.AddUser(firstName, lastName, password, regX, regY);
|
CreateUser(firstName, lastName, password, regX, regY);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
|
@ -437,7 +437,7 @@ namespace OpenSim
|
||||||
|
|
||||||
public LLUUID CreateUser(string tempfirstname, string templastname, string tempPasswd, uint regX, uint regY)
|
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>
|
/// <summary>
|
||||||
|
@ -584,7 +584,6 @@ namespace OpenSim
|
||||||
storageManager, m_httpServer,
|
storageManager, m_httpServer,
|
||||||
m_moduleLoader, m_dumpAssetsToFile, m_physicalPrim, m_see_into_region_from_neighbor, m_config.Source,
|
m_moduleLoader, m_dumpAssetsToFile, m_physicalPrim, m_see_into_region_from_neighbor, m_config.Source,
|
||||||
m_version);
|
m_version);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void handleRestartRegion(RegionInfo whichRegion)
|
public void handleRestartRegion(RegionInfo whichRegion)
|
||||||
|
@ -735,7 +734,3 @@ namespace OpenSim
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue