From 3294714099bbb49b5c3e19a5b21bf1be89d0873c Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Tue, 10 Nov 2009 07:57:54 -0800 Subject: Updated HGUserServices with AuthenticateUserByPassword, so that iar works. --- OpenSim/Region/Communications/Hypergrid/HGUserServices.cs | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'OpenSim/Region') 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 return base.UpdateUserProfile(userProfile); } + public override bool AuthenticateUserByPassword(UUID userID, string password) + { + if (m_localUserServices != null) + return m_localUserServices.AuthenticateUserByPassword(userID, password); + else + return base.AuthenticateUserByPassword(userID, password); + } + #region IUserServices Friend Methods // NOTE: We're still not dealing with foreign user friends -- cgit v1.1