Merge commit '9f171041c950d55d86481cdcee7a04c623bea8b2' into bigmerge

avinationmerge
Melanie 2011-10-25 02:56:22 +01:00
commit 3555987fe9
1 changed files with 6 additions and 0 deletions

View File

@ -144,6 +144,12 @@ namespace OpenSim.Server.Handlers.UserAccounts
if (UUID.TryParse(request["UserID"].ToString(), out userID))
account = m_UserAccountService.GetUserAccount(scopeID, userID);
}
else if (request.ContainsKey("PrincipalID") && request["PrincipalID"] != null)
{
UUID userID;
if (UUID.TryParse(request["PrincipalID"].ToString(), out userID))
account = m_UserAccountService.GetUserAccount(scopeID, userID);
}
else if (request.ContainsKey("Email") && request["Email"] != null)
{
account = m_UserAccountService.GetUserAccount(scopeID, request["Email"].ToString());