diff options
author | lbsa71 | 2007-09-27 13:51:16 +0000 |
---|---|---|
committer | lbsa71 | 2007-09-27 13:51:16 +0000 |
commit | 3ddf9da1f417f50f9e5b10afa963ea7e74a1d885 (patch) | |
tree | 30aef68b5c575f0fd2f0e0f0d4d7df5ebc0e21ad /OpenSim/Framework/Communications | |
parent | That weren't supposed to go there. (diff) | |
download | opensim-SC_OLD-3ddf9da1f417f50f9e5b10afa963ea7e74a1d885.zip opensim-SC_OLD-3ddf9da1f417f50f9e5b10afa963ea7e74a1d885.tar.gz opensim-SC_OLD-3ddf9da1f417f50f9e5b10afa963ea7e74a1d885.tar.bz2 opensim-SC_OLD-3ddf9da1f417f50f9e5b10afa963ea7e74a1d885.tar.xz |
* Tleiades patch #445 - the inventory folders displayed does not show the expected folder icons
Tahnx, Tleiades; keep up the good work!
Diffstat (limited to 'OpenSim/Framework/Communications')
-rw-r--r-- | OpenSim/Framework/Communications/LoginService.cs | 4 |
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 | ||