diff options
Diffstat (limited to 'OpenSim/Framework/Communications/CommunicationsManager.cs')
-rw-r--r-- | OpenSim/Framework/Communications/CommunicationsManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/Communications/CommunicationsManager.cs b/OpenSim/Framework/Communications/CommunicationsManager.cs index 0c6d53f..a07b165 100644 --- a/OpenSim/Framework/Communications/CommunicationsManager.cs +++ b/OpenSim/Framework/Communications/CommunicationsManager.cs | |||
@@ -136,7 +136,7 @@ namespace OpenSim.Framework.Communications | |||
136 | 136 | ||
137 | public LLUUID AddUser(string firstName, string lastName, string password, uint regX, uint regY) | 137 | public LLUUID AddUser(string firstName, string lastName, string password, uint regX, uint regY) |
138 | { | 138 | { |
139 | string md5PasswdHash = Util.Md5Hash(Util.Md5Hash(password) + ":" + ""); | 139 | string md5PasswdHash = Util.Md5Hash(Util.Md5Hash(password) + ":" + String.Empty); |
140 | 140 | ||
141 | m_userService.AddUserProfile(firstName, lastName, md5PasswdHash, regX, regY); | 141 | m_userService.AddUserProfile(firstName, lastName, md5PasswdHash, regX, regY); |
142 | UserProfileData userProf = UserService.GetUserProfile(firstName, lastName); | 142 | UserProfileData userProf = UserService.GetUserProfile(firstName, lastName); |