aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/InventoryServiceBase.cs
diff options
context:
space:
mode:
authorCharles Krinke2008-06-11 14:02:16 +0000
committerCharles Krinke2008-06-11 14:02:16 +0000
commit7821cca2f5a7c31a41446656f218fdaf450969c0 (patch)
treea5ac8102278c6011dd211b372776280c0863cc26 /OpenSim/Framework/Communications/InventoryServiceBase.cs
parentMantis#1528. Thank you kindly, Boscata for: (diff)
downloadopensim-SC_OLD-7821cca2f5a7c31a41446656f218fdaf450969c0.zip
opensim-SC_OLD-7821cca2f5a7c31a41446656f218fdaf450969c0.tar.gz
opensim-SC_OLD-7821cca2f5a7c31a41446656f218fdaf450969c0.tar.bz2
opensim-SC_OLD-7821cca2f5a7c31a41446656f218fdaf450969c0.tar.xz
Mantis#1514. Thank you kindly, Boscata for an InventoryServer patch
to allow the InventoryServer to work with MSSQL..
Diffstat (limited to 'OpenSim/Framework/Communications/InventoryServiceBase.cs')
-rw-r--r--OpenSim/Framework/Communications/InventoryServiceBase.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/OpenSim/Framework/Communications/InventoryServiceBase.cs b/OpenSim/Framework/Communications/InventoryServiceBase.cs
index dffeed3..89ccf93 100644
--- a/OpenSim/Framework/Communications/InventoryServiceBase.cs
+++ b/OpenSim/Framework/Communications/InventoryServiceBase.cs
@@ -199,6 +199,21 @@ namespace OpenSim.Framework.Communications
199 } 199 }
200 200
201 // See IInventoryServices 201 // See IInventoryServices
202 public bool UpdateFolder(InventoryFolderBase folder)
203 {
204 m_log.DebugFormat(
205 "[AGENT INVENTORY]: Updating folder {0} {1} to folder {2}", folder.Name, folder.ID, folder.ParentID);
206
207 foreach (KeyValuePair<string, IInventoryData> plugin in m_plugins)
208 {
209 plugin.Value.updateInventoryFolder(folder);
210 }
211
212 // FIXME: Should return false on failure
213 return true;
214 }
215
216 // See IInventoryServices
202 public bool MoveFolder(InventoryFolderBase folder) 217 public bool MoveFolder(InventoryFolderBase folder)
203 { 218 {
204 m_log.DebugFormat( 219 m_log.DebugFormat(