Update avatar picker search to work with OpenSearch people search
parent
424792b39b
commit
c18ce34d06
|
@ -422,7 +422,7 @@ namespace OpenSim.Data.MySQL
|
||||||
|
|
||||||
string[] querysplit;
|
string[] querysplit;
|
||||||
querysplit = query.Split(' ');
|
querysplit = query.Split(' ');
|
||||||
if (querysplit.Length == 2)
|
if (querysplit.Length > 1 && querysplit[1].Trim() != String.Empty)
|
||||||
{
|
{
|
||||||
Dictionary<string, string> param = new Dictionary<string, string>();
|
Dictionary<string, string> param = new Dictionary<string, string>();
|
||||||
param["?first"] = objAlphaNumericPattern.Replace(querysplit[0], String.Empty) + "%";
|
param["?first"] = objAlphaNumericPattern.Replace(querysplit[0], String.Empty) + "%";
|
||||||
|
@ -460,7 +460,7 @@ namespace OpenSim.Data.MySQL
|
||||||
dbm.Release();
|
dbm.Release();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (querysplit.Length == 1)
|
else
|
||||||
{
|
{
|
||||||
MySQLSuperManager dbm = GetLockedConnection("GeneratePickerResults");
|
MySQLSuperManager dbm = GetLockedConnection("GeneratePickerResults");
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue