diff options
author | Justin Clark-Casey (justincc) | 2009-09-08 17:42:07 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2009-09-08 17:42:07 +0100 |
commit | b7256f256733f1c7667edc95ec500694bbe35dab (patch) | |
tree | 7be2bc029b9c07672b757f7cc7aeb2ca4453da12 /OpenSim/Framework/InventoryFolderBase.cs | |
parent | refactor: change method argument name (diff) | |
download | opensim-SC_OLD-b7256f256733f1c7667edc95ec500694bbe35dab.zip opensim-SC_OLD-b7256f256733f1c7667edc95ec500694bbe35dab.tar.gz opensim-SC_OLD-b7256f256733f1c7667edc95ec500694bbe35dab.tar.bz2 opensim-SC_OLD-b7256f256733f1c7667edc95ec500694bbe35dab.tar.xz |
extend load iar test to loading into a deeply nested directory
correct bug associated with this
Diffstat (limited to 'OpenSim/Framework/InventoryFolderBase.cs')
-rw-r--r-- | OpenSim/Framework/InventoryFolderBase.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/OpenSim/Framework/InventoryFolderBase.cs b/OpenSim/Framework/InventoryFolderBase.cs index 0edb2c6..3eef6f6 100644 --- a/OpenSim/Framework/InventoryFolderBase.cs +++ b/OpenSim/Framework/InventoryFolderBase.cs | |||
@@ -84,6 +84,14 @@ namespace OpenSim.Framework | |||
84 | Owner = owner; | 84 | Owner = owner; |
85 | } | 85 | } |
86 | 86 | ||
87 | public InventoryFolderBase(UUID id, string name, UUID owner, UUID parent) | ||
88 | { | ||
89 | ID = id; | ||
90 | Name = name; | ||
91 | Owner = owner; | ||
92 | ParentID = parent; | ||
93 | } | ||
94 | |||
87 | public InventoryFolderBase(UUID id, string name, UUID owner, short type, UUID parent, ushort version) | 95 | public InventoryFolderBase(UUID id, string name, UUID owner, short type, UUID parent, ushort version) |
88 | { | 96 | { |
89 | ID = id; | 97 | ID = id; |