extend load iar test to loading into a deeply nested directory

correct bug associated with this
This commit is contained in:
Justin Clark-Casey (justincc)
2009-09-08 17:42:07 +01:00
parent 36a40e0295
commit b7256f2567
6 changed files with 133 additions and 11 deletions

View File

@@ -84,6 +84,14 @@ namespace OpenSim.Framework
Owner = owner;
}
public InventoryFolderBase(UUID id, string name, UUID owner, UUID parent)
{
ID = id;
Name = name;
Owner = owner;
ParentID = parent;
}
public InventoryFolderBase(UUID id, string name, UUID owner, short type, UUID parent, ushort version)
{
ID = id;