mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 17:05:55 +08:00
Make ScopeID be wild on user queries. Just pass it as UUID.Zero
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user