diff options
author | Melanie Thielker | 2008-11-27 03:17:00 +0000 |
---|---|---|
committer | Melanie Thielker | 2008-11-27 03:17:00 +0000 |
commit | 6b7ba29986460a273a05f365e61cdbc0c71b237a (patch) | |
tree | 772182f2896eb2d1f2179e600be6a183654a201a /OpenSim/Region/Environment/Scenes/Scene.cs | |
parent | Added local lookup before we ask the messaging server. (diff) | |
download | opensim-SC_OLD-6b7ba29986460a273a05f365e61cdbc0c71b237a.zip opensim-SC_OLD-6b7ba29986460a273a05f365e61cdbc0c71b237a.tar.gz opensim-SC_OLD-6b7ba29986460a273a05f365e61cdbc0c71b237a.tar.bz2 opensim-SC_OLD-6b7ba29986460a273a05f365e61cdbc0c71b237a.tar.xz |
Fix permission propagation that was broken some revision back, causing
sold/given prim to become full perm.
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/Scene.cs')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/Scene.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scene.cs b/OpenSim/Region/Environment/Scenes/Scene.cs index c20c718..71ef524 100644 --- a/OpenSim/Region/Environment/Scenes/Scene.cs +++ b/OpenSim/Region/Environment/Scenes/Scene.cs | |||
@@ -4270,7 +4270,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
4270 | foreach (SceneObjectPart child in partList) | 4270 | foreach (SceneObjectPart child in partList) |
4271 | { | 4271 | { |
4272 | child.Inventory.ChangeInventoryOwner(remoteClient.AgentId); | 4272 | child.Inventory.ChangeInventoryOwner(remoteClient.AgentId); |
4273 | child.Inventory.ApplyNextOwnerPermissions(); | 4273 | child.ApplyNextOwnerPermissions(); |
4274 | } | 4274 | } |
4275 | } | 4275 | } |
4276 | 4276 | ||