aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs')
-rw-r--r--OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs b/OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs
index 17d9ae4..fcfb53a 100644
--- a/OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs
+++ b/OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs
@@ -133,6 +133,18 @@ namespace OpenSim.Framework.Communications.Cache
133 } 133 }
134 } 134 }
135 135
136 /// <summary>
137 /// Handle a client request to update the inventory folder
138 ///
139 /// FIXME: We call add new inventory folder because in the data layer, we happen to use an SQL REPLACE
140 /// so this will work to rename an existing folder. Needless to say, to rely on this is very confusing,
141 /// and needs to be changed.
142 /// </summary>
143 /// <param name="remoteClient"></param>
144 /// <param name="folderID"></param>
145 /// <param name="type"></param>
146 /// <param name="name"></param>
147 /// <param name="parentID"></param>
136 public void HandleUpdateInventoryFolder(IClientAPI remoteClient, LLUUID folderID, ushort type, string name, 148 public void HandleUpdateInventoryFolder(IClientAPI remoteClient, LLUUID folderID, ushort type, string name,
137 LLUUID parentID) 149 LLUUID parentID)
138 { 150 {