aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs
diff options
context:
space:
mode:
authorDiva Canto2014-04-24 14:11:42 -0700
committerDiva Canto2014-04-24 14:11:42 -0700
commit1d9a9e6004e249100c96659fd1d71f6d5cee7bb1 (patch)
tree9eb175bcde50df527c59fefd1dd4b5ccae0f716f /OpenSim/Region/Framework/Scenes/Scene.Inventory.cs
parentFixed: hypergrid-linking stopped accepting the following format: "http://grid... (diff)
downloadopensim-SC_OLD-1d9a9e6004e249100c96659fd1d71f6d5cee7bb1.zip
opensim-SC_OLD-1d9a9e6004e249100c96659fd1d71f6d5cee7bb1.tar.gz
opensim-SC_OLD-1d9a9e6004e249100c96659fd1d71f6d5cee7bb1.tar.bz2
opensim-SC_OLD-1d9a9e6004e249100c96659fd1d71f6d5cee7bb1.tar.xz
Fixes a long-standing bug related to god-mode change ownership of objects permissive, where the permissions of the children prims' inventory items were not changed. As a consequence, we couldn't control some of the objects imported via HG and OARs even in god mode.
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/Scene.Inventory.cs')
-rw-r--r--OpenSim/Region/Framework/Scenes/Scene.Inventory.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs b/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs
index b86f349..bb9f457 100644
--- a/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs
+++ b/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs
@@ -2040,7 +2040,7 @@ namespace OpenSim.Region.Framework.Scenes
2040 deleteGroups.Add(grp); 2040 deleteGroups.Add(grp);
2041 2041
2042 // If child prims have invalid perms, fix them 2042 // If child prims have invalid perms, fix them
2043 grp.AdjustChildPrimPermissions(); 2043 grp.AdjustChildPrimPermissions(false);
2044 2044
2045 if (remoteClient == null) 2045 if (remoteClient == null)
2046 { 2046 {