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

0.6.5-rc1
Justin Clarke Casey 2009-04-17 16:06:35 +00:00
parent 91bd87add1
commit 83c9a6a230
1 changed files with 1 additions and 1 deletions

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);
}