groups v2: remove wrong filters on DB search

This commit is contained in:
UbitUmarov
2019-10-13 18:52:33 +01:00
parent 0273baaef6
commit 5bbaea50e4
2 changed files with 3 additions and 3 deletions

View File

@@ -90,7 +90,7 @@ namespace OpenSim.Data.MySQL
else
pattern = string.Format("Name LIKE '%{0}%'", MySqlHelper.EscapeString(pattern));
return m_Groups.Get(string.Format("ShowInList=1 AND ({0}) ORDER BY Name LIMIT 100", pattern));
return m_Groups.Get(string.Format("ShowInList=1 AND ({0})", pattern));
}
public bool DeleteGroup(UUID groupID)