further refactor and rename of InventoryFolderBase properties

to reflect what they really are.
This commit is contained in:
Sean Dague
2008-04-08 23:26:31 +00:00
parent 8c82117207
commit a6d27e0929
12 changed files with 45 additions and 45 deletions

View File

@@ -111,12 +111,12 @@ namespace OpenSim.Grid.InventoryServer
}
// ensure we have valid agent id
if (f.AgentID == LLUUID.Zero)
if (f.Owner == LLUUID.Zero)
{
if (parent != null)
f.AgentID = parent.AgentID;
f.Owner = parent.Owner;
else
f.AgentID = f.ID;
f.Owner = f.ID;
modified = true;
}