diff options
author | Diva Canto | 2009-11-10 07:57:54 -0800 |
---|---|---|
committer | Diva Canto | 2009-11-10 07:57:54 -0800 |
commit | 3294714099bbb49b5c3e19a5b21bf1be89d0873c (patch) | |
tree | cef7c40dd59f64dd1bb2b47a93f4d6d8619765a3 /OpenSim/Region | |
parent | * Added HTTP polling for Statistics Monitor Module (access via http://sim.com... (diff) | |
download | opensim-SC_OLD-3294714099bbb49b5c3e19a5b21bf1be89d0873c.zip opensim-SC_OLD-3294714099bbb49b5c3e19a5b21bf1be89d0873c.tar.gz opensim-SC_OLD-3294714099bbb49b5c3e19a5b21bf1be89d0873c.tar.bz2 opensim-SC_OLD-3294714099bbb49b5c3e19a5b21bf1be89d0873c.tar.xz |
Updated HGUserServices with AuthenticateUserByPassword, so that iar works.
Diffstat (limited to 'OpenSim/Region')
-rw-r--r-- | OpenSim/Region/Communications/Hypergrid/HGUserServices.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/OpenSim/Region/Communications/Hypergrid/HGUserServices.cs b/OpenSim/Region/Communications/Hypergrid/HGUserServices.cs index 49a2261..09d8285 100644 --- a/OpenSim/Region/Communications/Hypergrid/HGUserServices.cs +++ b/OpenSim/Region/Communications/Hypergrid/HGUserServices.cs | |||
@@ -204,6 +204,14 @@ namespace OpenSim.Region.Communications.Hypergrid | |||
204 | return base.UpdateUserProfile(userProfile); | 204 | return base.UpdateUserProfile(userProfile); |
205 | } | 205 | } |
206 | 206 | ||
207 | public override bool AuthenticateUserByPassword(UUID userID, string password) | ||
208 | { | ||
209 | if (m_localUserServices != null) | ||
210 | return m_localUserServices.AuthenticateUserByPassword(userID, password); | ||
211 | else | ||
212 | return base.AuthenticateUserByPassword(userID, password); | ||
213 | } | ||
214 | |||
207 | #region IUserServices Friend Methods | 215 | #region IUserServices Friend Methods |
208 | 216 | ||
209 | // NOTE: We're still not dealing with foreign user friends | 217 | // NOTE: We're still not dealing with foreign user friends |