diff options
author | Justin Clarke Casey | 2008-11-28 16:04:01 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-11-28 16:04:01 +0000 |
commit | 18974b77668553a9fd1bba0b646bfc7a0d788bcb (patch) | |
tree | c144c255e2057a42a0a54a42d50b892e4fafb739 /OpenSim/Region/Application | |
parent | * refactor: move ResetUserPassword into UserServiceAdmin (diff) | |
download | opensim-SC_OLD-18974b77668553a9fd1bba0b646bfc7a0d788bcb.zip opensim-SC_OLD-18974b77668553a9fd1bba0b646bfc7a0d788bcb.tar.gz opensim-SC_OLD-18974b77668553a9fd1bba0b646bfc7a0d788bcb.tar.bz2 opensim-SC_OLD-18974b77668553a9fd1bba0b646bfc7a0d788bcb.tar.xz |
* refactor: rename UserServiceAdmin to UserAdminService
Diffstat (limited to 'OpenSim/Region/Application')
-rw-r--r-- | OpenSim/Region/Application/OpenSim.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Application/OpenSim.cs b/OpenSim/Region/Application/OpenSim.cs index 316cad5..1999737 100644 --- a/OpenSim/Region/Application/OpenSim.cs +++ b/OpenSim/Region/Application/OpenSim.cs | |||
@@ -800,7 +800,7 @@ namespace OpenSim | |||
800 | 800 | ||
801 | if (null == m_commsManager.UserService.GetUserProfile(firstName, lastName)) | 801 | if (null == m_commsManager.UserService.GetUserProfile(firstName, lastName)) |
802 | { | 802 | { |
803 | m_commsManager.UserServiceAdmin.AddUser(firstName, lastName, password, email, regX, regY); | 803 | m_commsManager.UserAdminService.AddUser(firstName, lastName, password, email, regX, regY); |
804 | } | 804 | } |
805 | else | 805 | else |
806 | { | 806 | { |
@@ -830,7 +830,7 @@ namespace OpenSim | |||
830 | newPassword = MainConsole.Instance.PasswdPrompt("New password"); | 830 | newPassword = MainConsole.Instance.PasswdPrompt("New password"); |
831 | else newPassword = cmdparams[4]; | 831 | else newPassword = cmdparams[4]; |
832 | 832 | ||
833 | m_commsManager.UserServiceAdmin.ResetUserPassword(firstName, lastName, newPassword); | 833 | m_commsManager.UserAdminService.ResetUserPassword(firstName, lastName, newPassword); |
834 | } | 834 | } |
835 | 835 | ||
836 | protected void SaveXml(string[] cmdparams) | 836 | protected void SaveXml(string[] cmdparams) |