mirror of
https://github.com/opensim/opensim.git
synced 2026-05-14 02:39:52 +08:00
Don't show hidden groups in search results
Resolves http://opensimulator.org/mantis/view.php?id=6937
This commit is contained in:
@@ -86,11 +86,11 @@ namespace OpenSim.Data.MySQL
|
||||
public GroupData[] RetrieveGroups(string pattern)
|
||||
{
|
||||
if (string.IsNullOrEmpty(pattern))
|
||||
pattern = "1 ORDER BY Name LIMIT 100";
|
||||
pattern = "1";
|
||||
else
|
||||
pattern = string.Format("Name LIKE '%{0}%' ORDER BY Name LIMIT 100", pattern);
|
||||
pattern = string.Format("Name LIKE '%{0}%'", pattern);
|
||||
|
||||
return m_Groups.Get(pattern);
|
||||
return m_Groups.Get(string.Format("ShowInList=1 AND ({0}) ORDER BY Name LIMIT 100", pattern));
|
||||
}
|
||||
|
||||
public bool DeleteGroup(UUID groupID)
|
||||
|
||||
Reference in New Issue
Block a user