On "show caps", stop excluding the seed cap but do exclude it elsewhere

This commit is contained in:
Justin Clark-Casey (justincc)
2011-11-29 20:37:03 +00:00
parent 679a5f6c0b
commit fa63054c4f
4 changed files with 22 additions and 19 deletions

View File

@@ -239,7 +239,7 @@ namespace OpenSim.Region.CoreModules.Framework
{
caps.AppendFormat("** User {0}:\n", kvp.Key);
for (IDictionaryEnumerator kvp2 = kvp.Value.CapsHandlers.CapsDetails.GetEnumerator(); kvp2.MoveNext(); )
for (IDictionaryEnumerator kvp2 = kvp.Value.CapsHandlers.GetCapsDetails(false).GetEnumerator(); kvp2.MoveNext(); )
{
Uri uri = new Uri(kvp2.Value.ToString());
caps.AppendFormat(m_showCapsCommandFormat, kvp2.Key, uri.PathAndQuery);