diff options
author | Melanie | 2012-03-04 16:23:19 +0000 |
---|---|---|
committer | Melanie | 2012-03-04 16:23:19 +0000 |
commit | 6338996f87ca1314c493709d42b1c606f5688676 (patch) | |
tree | 5ea7bd2c640390c19ef787360d71ac97851db43f /OpenSim/Server/Handlers | |
parent | Merge branch 'master' into careminster (diff) | |
parent | Add WebProfiles config to other config example (diff) | |
download | opensim-SC-6338996f87ca1314c493709d42b1c606f5688676.zip opensim-SC-6338996f87ca1314c493709d42b1c606f5688676.tar.gz opensim-SC-6338996f87ca1314c493709d42b1c606f5688676.tar.bz2 opensim-SC-6338996f87ca1314c493709d42b1c606f5688676.tar.xz |
Merge branch 'master' into careminster
Conflicts:
OpenSim/Services/AuthenticationService/PasswordAuthenticationService.cs
Diffstat (limited to 'OpenSim/Server/Handlers')
-rw-r--r-- | OpenSim/Server/Handlers/Authentication/OpenIdServerHandler.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Server/Handlers/Authentication/OpenIdServerHandler.cs b/OpenSim/Server/Handlers/Authentication/OpenIdServerHandler.cs index 440b898..dfed761 100644 --- a/OpenSim/Server/Handlers/Authentication/OpenIdServerHandler.cs +++ b/OpenSim/Server/Handlers/Authentication/OpenIdServerHandler.cs | |||
@@ -248,7 +248,7 @@ For more information, see <a href='http://openid.net/'>http://openid.net/</a>. | |||
248 | if (passwordValues != null && passwordValues.Length == 1) | 248 | if (passwordValues != null && passwordValues.Length == 1) |
249 | { | 249 | { |
250 | if (account != null && | 250 | if (account != null && |
251 | (m_authenticationService.Authenticate(account.PrincipalID, passwordValues[0], 30) != string.Empty)) | 251 | (m_authenticationService.Authenticate(account.PrincipalID,Util.Md5Hash(passwordValues[0]), 30) != string.Empty)) |
252 | authRequest.IsAuthenticated = true; | 252 | authRequest.IsAuthenticated = true; |
253 | else | 253 | else |
254 | authRequest.IsAuthenticated = false; | 254 | authRequest.IsAuthenticated = false; |