mirror of
https://github.com/opensim/opensim.git
synced 2026-08-07 09:45:47 +08:00
Fix for un-encrypted master avatar password in user database
This commit is contained in:
@@ -269,7 +269,8 @@ namespace OpenSim.Framework.Types
|
||||
this.MasterAvatarLastName = (string)configuration_result;
|
||||
break;
|
||||
case "master_avatar_pass":
|
||||
this.MasterAvatarSandboxPassword = (string)configuration_result;
|
||||
string tempMD5Passwd = (string)configuration_result;
|
||||
this.MasterAvatarSandboxPassword = Util.Md5Hash(Util.Md5Hash(tempMD5Passwd) + ":" + "");
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user