Make ScopeID be wild on user queries. Just pass it as UUID.Zero

slimupdates
Melanie 2009-12-30 22:44:04 +00:00
parent a21ce9151b
commit 96f387ce49
1 changed files with 14 additions and 3 deletions

View File

@ -44,9 +44,20 @@ namespace OpenSim.Services.UserAccountService
public UserAccount GetUserAccount(UUID scopeID, string firstName,
string lastName)
{
UserAccountData[] d = m_Database.Get(
new string[] {"ScopeID", "FirstName", "LastName"},
new string[] {scopeID.ToString(), firstName, lastName});
UserAccountData[] d;
if (scopeID != UUID.Zero)
{
d = m_Database.Get(
new string[] {"ScopeID", "FirstName", "LastName"},
new string[] {scopeID.ToString(), firstName, lastName});
}
else
{
d = m_Database.Get(
new string[] {"FirstName", "LastName"},
new string[] {firstName, lastName});
}
if (d.Length < 1)
return null;