* Change profile check for add user to run through the cache service

This commit is contained in:
Justin Clarke Casey
2009-04-17 16:06:35 +00:00
parent 91bd87add1
commit 83c9a6a230

View File

@@ -903,7 +903,7 @@ namespace OpenSim
email = MainConsole.Instance.CmdPrompt("Email", "");
else email = cmdparams[7];
if (null == m_commsManager.UserService.GetUserProfile(firstName, lastName))
if (null == m_commsManager.UserProfileCacheService.GetUserDetails(firstName, lastName))
{
m_commsManager.UserAdminService.AddUser(firstName, lastName, password, email, regX, regY);
}