mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 01:06:30 +08:00
Updated HGUserServices with AuthenticateUserByPassword, so that iar works.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user