diff options
author | Diva Canto | 2010-03-27 22:48:15 -0700 |
---|---|---|
committer | Diva Canto | 2010-03-27 22:48:15 -0700 |
commit | efc0916a017b0b1ddbbf226e4b3d3f3e2a1df908 (patch) | |
tree | d842d88a63553757944059180b79b1bfa7083c62 /OpenSim | |
parent | Change the SimianGrid connector log messages to start with "[SIMIAN " to avoi... (diff) | |
download | opensim-SC_OLD-efc0916a017b0b1ddbbf226e4b3d3f3e2a1df908.zip opensim-SC_OLD-efc0916a017b0b1ddbbf226e4b3d3f3e2a1df908.tar.gz opensim-SC_OLD-efc0916a017b0b1ddbbf226e4b3d3f3e2a1df908.tar.bz2 opensim-SC_OLD-efc0916a017b0b1ddbbf226e4b3d3f3e2a1df908.tar.xz |
May fix mantis #4613
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Region/CoreModules/Avatar/Inventory/Archiver/InventoryArchiverModule.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/Avatar/Inventory/Archiver/InventoryArchiverModule.cs b/OpenSim/Region/CoreModules/Avatar/Inventory/Archiver/InventoryArchiverModule.cs index 71b3062..f570999 100644 --- a/OpenSim/Region/CoreModules/Avatar/Inventory/Archiver/InventoryArchiverModule.cs +++ b/OpenSim/Region/CoreModules/Avatar/Inventory/Archiver/InventoryArchiverModule.cs | |||
@@ -388,7 +388,8 @@ namespace OpenSim.Region.CoreModules.Avatar.Inventory.Archiver | |||
388 | 388 | ||
389 | try | 389 | try |
390 | { | 390 | { |
391 | if (m_aScene.AuthenticationService.Authenticate(account.PrincipalID, pass, 1) != string.Empty) | 391 | string encpass = Util.Md5Hash(pass); |
392 | if (m_aScene.AuthenticationService.Authenticate(account.PrincipalID, encpass, 1) != string.Empty) | ||
392 | { | 393 | { |
393 | return account; | 394 | return account; |
394 | } | 395 | } |