aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications
diff options
context:
space:
mode:
authorMW2007-10-08 10:30:15 +0000
committerMW2007-10-08 10:30:15 +0000
commit4c25008850f92bcc79502c71a0e4d34c883d27d0 (patch)
treec5dd571fb11699675c80d363b3261c5be477c018 /OpenSim/Framework/Communications
parentsmall bug fix (diff)
downloadopensim-SC_OLD-4c25008850f92bcc79502c71a0e4d34c883d27d0.zip
opensim-SC_OLD-4c25008850f92bcc79502c71a0e4d34c883d27d0.tar.gz
opensim-SC_OLD-4c25008850f92bcc79502c71a0e4d34c883d27d0.tar.bz2
opensim-SC_OLD-4c25008850f92bcc79502c71a0e4d34c883d27d0.tar.xz
Applied patch 485, inventory patch from tleiades (thanks again).
Diffstat (limited to 'OpenSim/Framework/Communications')
-rw-r--r--OpenSim/Framework/Communications/InventoryServiceBase.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Framework/Communications/InventoryServiceBase.cs b/OpenSim/Framework/Communications/InventoryServiceBase.cs
index 7536429..366b110 100644
--- a/OpenSim/Framework/Communications/InventoryServiceBase.cs
+++ b/OpenSim/Framework/Communications/InventoryServiceBase.cs
@@ -128,7 +128,7 @@ namespace OpenSim.Framework.Communications
128 { 128 {
129 foreach (KeyValuePair<string, IInventoryData> plugin in m_plugins) 129 foreach (KeyValuePair<string, IInventoryData> plugin in m_plugins)
130 { 130 {
131 plugin.Value.deleteInventoryItem(item); 131 plugin.Value.deleteInventoryItem(item.inventoryID);
132 } 132 }
133 } 133 }
134 134
@@ -208,4 +208,4 @@ namespace OpenSim.Framework.Communications
208 public abstract void AddNewInventoryItem(LLUUID userID, InventoryItemBase item); 208 public abstract void AddNewInventoryItem(LLUUID userID, InventoryItemBase item);
209 public abstract void DeleteInventoryItem(LLUUID userID, InventoryItemBase item); 209 public abstract void DeleteInventoryItem(LLUUID userID, InventoryItemBase item);
210 } 210 }
211} \ No newline at end of file 211}