aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/LoginService.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Framework/Communications/LoginService.cs')
-rw-r--r--OpenSim/Framework/Communications/LoginService.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/OpenSim/Framework/Communications/LoginService.cs b/OpenSim/Framework/Communications/LoginService.cs
index 413a934..6f558a0 100644
--- a/OpenSim/Framework/Communications/LoginService.cs
+++ b/OpenSim/Framework/Communications/LoginService.cs
@@ -734,11 +734,11 @@ namespace OpenSim.Framework.UserManagement
734 foreach (InventoryFolderBase folder in rootFolders.Values) 734 foreach (InventoryFolderBase folder in rootFolders.Values)
735 { 735 {
736 Hashtable TempHash = new Hashtable(); 736 Hashtable TempHash = new Hashtable();
737 TempHash["name"] = folder.name; 737 TempHash["name"] = folder.Name;
738 TempHash["parent_id"] = folder.parentID.ToString(); 738 TempHash["parent_id"] = folder.ParentID.ToString();
739 TempHash["version"] = (Int32)folder.version; 739 TempHash["version"] = (Int32)folder.Version;
740 TempHash["type_default"] = (Int32)folder.type; 740 TempHash["type_default"] = (Int32)folder.Type;
741 TempHash["folder_id"] = folder.folderID.ToString(); 741 TempHash["folder_id"] = folder.ID.ToString();
742 folderHashes.Add(TempHash); 742 folderHashes.Add(TempHash);
743 } 743 }
744 744