aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Framework/Communications')
-rw-r--r--OpenSim/Framework/Communications/LoginService.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Framework/Communications/LoginService.cs b/OpenSim/Framework/Communications/LoginService.cs
index 64e323d..4e6aa80 100644
--- a/OpenSim/Framework/Communications/LoginService.cs
+++ b/OpenSim/Framework/Communications/LoginService.cs
@@ -252,8 +252,8 @@ namespace OpenSim.Framework.UserManagement
252 TempHash["folder_id"] = tempFolderID.ToStringHyphenated(); 252 TempHash["folder_id"] = tempFolderID.ToStringHyphenated();
253 TempHash["name"] = ifb.name; 253 TempHash["name"] = ifb.name;
254 TempHash["parent_id"] = tempParentID.ToStringHyphenated(); 254 TempHash["parent_id"] = tempParentID.ToStringHyphenated();
255 TempHash["type_default"] = ifb.type; 255 TempHash["type_default"] = (Int32)ifb.type;
256 TempHash["version"] = ifb.version+1; 256 TempHash["version"] = (Int32)ifb.version+1;
257 temp.Add(TempHash); 257 temp.Add(TempHash);
258 } 258 }
259 259