diff options
author | Sean Dague | 2008-04-08 23:26:31 +0000 |
---|---|---|
committer | Sean Dague | 2008-04-08 23:26:31 +0000 |
commit | a6d27e09295cd0160d3439fbfa6598f08c431608 (patch) | |
tree | fc416f3da7af6fd14a06d24a1a43e924c458853e /OpenSim/Grid/InventoryServer/InventoryManager.cs | |
parent | added migration script for SqliteAssets (diff) | |
download | opensim-SC-a6d27e09295cd0160d3439fbfa6598f08c431608.zip opensim-SC-a6d27e09295cd0160d3439fbfa6598f08c431608.tar.gz opensim-SC-a6d27e09295cd0160d3439fbfa6598f08c431608.tar.bz2 opensim-SC-a6d27e09295cd0160d3439fbfa6598f08c431608.tar.xz |
further refactor and rename of InventoryFolderBase properties
to reflect what they really are.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Grid/InventoryServer/InventoryManager.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Grid/InventoryServer/InventoryManager.cs b/OpenSim/Grid/InventoryServer/InventoryManager.cs index aad02c3..ed154a8 100644 --- a/OpenSim/Grid/InventoryServer/InventoryManager.cs +++ b/OpenSim/Grid/InventoryServer/InventoryManager.cs | |||
@@ -111,12 +111,12 @@ namespace OpenSim.Grid.InventoryServer | |||
111 | } | 111 | } |
112 | 112 | ||
113 | // ensure we have valid agent id | 113 | // ensure we have valid agent id |
114 | if (f.AgentID == LLUUID.Zero) | 114 | if (f.Owner == LLUUID.Zero) |
115 | { | 115 | { |
116 | if (parent != null) | 116 | if (parent != null) |
117 | f.AgentID = parent.AgentID; | 117 | f.Owner = parent.Owner; |
118 | else | 118 | else |
119 | f.AgentID = f.ID; | 119 | f.Owner = f.ID; |
120 | modified = true; | 120 | modified = true; |
121 | } | 121 | } |
122 | 122 | ||