diff options
author | Justin Clarke Casey | 2009-04-17 16:06:35 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2009-04-17 16:06:35 +0000 |
commit | 83c9a6a230f0c9ba96a4da4f43ae7b64eb5b0574 (patch) | |
tree | 9d183adb6a39bb04243dbad6ffbd4ad9b23987ff /OpenSim | |
parent | - disabling logging of non-system IRC messages (diff) | |
download | opensim-SC_OLD-83c9a6a230f0c9ba96a4da4f43ae7b64eb5b0574.zip opensim-SC_OLD-83c9a6a230f0c9ba96a4da4f43ae7b64eb5b0574.tar.gz opensim-SC_OLD-83c9a6a230f0c9ba96a4da4f43ae7b64eb5b0574.tar.bz2 opensim-SC_OLD-83c9a6a230f0c9ba96a4da4f43ae7b64eb5b0574.tar.xz |
* Change profile check for add user to run through the cache service
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Region/Application/OpenSim.cs | 2 |
1 files changed, 1 insertions, 1 deletions
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 | |||
903 | email = MainConsole.Instance.CmdPrompt("Email", ""); | 903 | email = MainConsole.Instance.CmdPrompt("Email", ""); |
904 | else email = cmdparams[7]; | 904 | else email = cmdparams[7]; |
905 | 905 | ||
906 | if (null == m_commsManager.UserService.GetUserProfile(firstName, lastName)) | 906 | if (null == m_commsManager.UserProfileCacheService.GetUserDetails(firstName, lastName)) |
907 | { | 907 | { |
908 | m_commsManager.UserAdminService.AddUser(firstName, lastName, password, email, regX, regY); | 908 | m_commsManager.UserAdminService.AddUser(firstName, lastName, password, email, regX, regY); |
909 | } | 909 | } |