Restrict inventory items added in a transaction to folder belonging

to the connected client.
This commit is contained in:
Melanie
2010-09-27 00:29:27 +01:00
parent 9f17ae580d
commit 34e8bf45b6

View File

@@ -834,6 +834,12 @@ namespace OpenSim.Region.Framework.Scenes
if (!Permissions.CanCreateUserInventory(invType, remoteClient.AgentId))
return;
InventoryFolderBase f = new InventoryFolderBase(folderID, remoteClient.AgentId);
InventoryFolderBase folder = InventoryService.GetFolder(f);
if (folder == null || folder.Owner != remoteClient.AgentId)
return;
if (transactionID == UUID.Zero)
{
ScenePresence presence;