aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorDahlia Trimble2009-05-08 04:39:45 +0000
committerDahlia Trimble2009-05-08 04:39:45 +0000
commitbf5fda89081f007f970a66c71dc3ff25e131a36d (patch)
tree7515f8057623bdbaed0e74400ccde138836ba358 /OpenSim
parentAdded a Copy() method to PrimMesh and SculptMesh as suggested by dmiles. Sync... (diff)
downloadopensim-SC_OLD-bf5fda89081f007f970a66c71dc3ff25e131a36d.zip
opensim-SC_OLD-bf5fda89081f007f970a66c71dc3ff25e131a36d.tar.gz
opensim-SC_OLD-bf5fda89081f007f970a66c71dc3ff25e131a36d.tar.bz2
opensim-SC_OLD-bf5fda89081f007f970a66c71dc3ff25e131a36d.tar.xz
Thanks lulurun for a patch which addresses Mantis #3599: Exceptions when AssetInventoryServer receive a "DeleteItem" request
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Grid/AssetInventoryServer/Plugins/OpenSim/OpenSimInventoryFrontendPlugin.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Grid/AssetInventoryServer/Plugins/OpenSim/OpenSimInventoryFrontendPlugin.cs b/OpenSim/Grid/AssetInventoryServer/Plugins/OpenSim/OpenSimInventoryFrontendPlugin.cs
index 4253668..c83e911 100644
--- a/OpenSim/Grid/AssetInventoryServer/Plugins/OpenSim/OpenSimInventoryFrontendPlugin.cs
+++ b/OpenSim/Grid/AssetInventoryServer/Plugins/OpenSim/OpenSimInventoryFrontendPlugin.cs
@@ -625,7 +625,7 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins.OpenSim
625 ReadUUID(reader, "Folder", out dummyUUID); 625 ReadUUID(reader, "Folder", out dummyUUID);
626 item.Folder = dummyUUID; 626 item.Folder = dummyUUID;
627 627
628 item.CreatorId = reader.ReadElementContentAsString("Creator", String.Empty); 628 item.CreatorId = reader.ReadElementContentAsString("CreatorId", String.Empty);
629 item.Description = reader.ReadElementContentAsString("Description", String.Empty); 629 item.Description = reader.ReadElementContentAsString("Description", String.Empty);
630 630
631 uint dummyUInt; 631 uint dummyUInt;