Attempt to fix mantis issue # 73

afrisby
MW 2007-12-01 20:57:14 +00:00
parent a274acc7b8
commit 4dee53c7fb
1 changed files with 12 additions and 8 deletions

View File

@ -59,6 +59,8 @@ namespace OpenSim.Framework.Communications.Cache
// Methods
public InventoryFolderImpl CreateNewSubFolder(LLUUID folderID, string folderName, ushort type)
{
if (!SubFolders.ContainsKey(folderID))
{
InventoryFolderImpl subFold = new InventoryFolderImpl();
subFold.name = folderName;
@ -69,6 +71,8 @@ namespace OpenSim.Framework.Communications.Cache
SubFolders.Add(subFold.folderID, subFold);
return subFold;
}
return null;
}
public InventoryItemBase HasItem(LLUUID itemID)
{