aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/Cache/InventoryFolderImpl.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/Communications/Cache/InventoryFolderImpl.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Framework/Communications/Cache/InventoryFolderImpl.cs b/OpenSim/Framework/Communications/Cache/InventoryFolderImpl.cs
index 37907a0..091a6a3 100644
--- a/OpenSim/Framework/Communications/Cache/InventoryFolderImpl.cs
+++ b/OpenSim/Framework/Communications/Cache/InventoryFolderImpl.cs
@@ -45,7 +45,7 @@ namespace OpenSim.Framework.Communications.Cache
45 // Constructors 45 // Constructors
46 public InventoryFolderImpl(InventoryFolderBase folderbase) 46 public InventoryFolderImpl(InventoryFolderBase folderbase)
47 { 47 {
48 AgentID = folderbase.AgentID; 48 Owner = folderbase.Owner;
49 ID = folderbase.ID; 49 ID = folderbase.ID;
50 Name = folderbase.Name; 50 Name = folderbase.Name;
51 ParentID = folderbase.ParentID; 51 ParentID = folderbase.ParentID;
@@ -67,7 +67,7 @@ namespace OpenSim.Framework.Communications.Cache
67 subFold.ID = folderID; 67 subFold.ID = folderID;
68 subFold.Type = (short) type; 68 subFold.Type = (short) type;
69 subFold.ParentID = this.ID; 69 subFold.ParentID = this.ID;
70 subFold.AgentID = AgentID; 70 subFold.Owner = Owner;
71 SubFolders.Add(subFold.ID, subFold); 71 SubFolders.Add(subFold.ID, subFold);
72 return subFold; 72 return subFold;
73 } 73 }