From 83c9a6a230f0c9ba96a4da4f43ae7b64eb5b0574 Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Fri, 17 Apr 2009 16:06:35 +0000 Subject: * Change profile check for add user to run through the cache service --- OpenSim/Region/Application/OpenSim.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'OpenSim/Region/Application/OpenSim.cs') diff --git a/OpenSim/Region/Application/OpenSim.cs b/OpenSim/Region/Application/OpenSim.cs index bafa736..a0b9568 100644 --- a/OpenSim/Region/Application/OpenSim.cs +++ b/OpenSim/Region/Application/OpenSim.cs @@ -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); } -- cgit v1.1