diff options
Diffstat (limited to 'OpenSim/Grid/UserServer/UserLoginService.cs')
-rw-r--r-- | OpenSim/Grid/UserServer/UserLoginService.cs | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/OpenSim/Grid/UserServer/UserLoginService.cs b/OpenSim/Grid/UserServer/UserLoginService.cs index 5fad88a..f6bd974 100644 --- a/OpenSim/Grid/UserServer/UserLoginService.cs +++ b/OpenSim/Grid/UserServer/UserLoginService.cs | |||
@@ -325,16 +325,16 @@ namespace OpenSim.Grid.UserServer | |||
325 | { | 325 | { |
326 | // m_log.DebugFormat("[LOGIN]: Received agent inventory folder {0}", InvFolder.name); | 326 | // m_log.DebugFormat("[LOGIN]: Received agent inventory folder {0}", InvFolder.name); |
327 | 327 | ||
328 | if (InvFolder.parentID == LLUUID.Zero) | 328 | if (InvFolder.ParentID == LLUUID.Zero) |
329 | { | 329 | { |
330 | rootID = InvFolder.folderID; | 330 | rootID = InvFolder.ID; |
331 | } | 331 | } |
332 | TempHash = new Hashtable(); | 332 | TempHash = new Hashtable(); |
333 | TempHash["name"] = InvFolder.name; | 333 | TempHash["name"] = InvFolder.Name; |
334 | TempHash["parent_id"] = InvFolder.parentID.ToString(); | 334 | TempHash["parent_id"] = InvFolder.ParentID.ToString(); |
335 | TempHash["version"] = (Int32) InvFolder.version; | 335 | TempHash["version"] = (Int32) InvFolder.Version; |
336 | TempHash["type_default"] = (Int32) InvFolder.type; | 336 | TempHash["type_default"] = (Int32) InvFolder.Type; |
337 | TempHash["folder_id"] = InvFolder.folderID.ToString(); | 337 | TempHash["folder_id"] = InvFolder.ID.ToString(); |
338 | AgentInventoryArray.Add(TempHash); | 338 | AgentInventoryArray.Add(TempHash); |
339 | } | 339 | } |
340 | return new InventoryData(AgentInventoryArray, rootID); | 340 | return new InventoryData(AgentInventoryArray, rootID); |