diff options
author | Melanie Thielker | 2016-04-29 22:36:56 +0200 |
---|---|---|
committer | Melanie Thielker | 2016-04-29 22:36:56 +0200 |
commit | 59ed89769aa292196f99affe0a99a758e63a538a (patch) | |
tree | 2c09cf5c14e2dc51b0e95cdd95ffd29d01abcbe0 /OpenSim/Region/Framework/Scenes/SceneObjectPart.cs | |
parent | Allow default permissions from the viewer to be applied to uploaded objects. (diff) | |
download | opensim-SC-59ed89769aa292196f99affe0a99a758e63a538a.zip opensim-SC-59ed89769aa292196f99affe0a99a758e63a538a.tar.gz opensim-SC-59ed89769aa292196f99affe0a99a758e63a538a.tar.bz2 opensim-SC-59ed89769aa292196f99affe0a99a758e63a538a.tar.xz |
Apply user specified default perms across the board, to items uploaded as well as items created and to rezzed prims in world.
This effectively removes the concept of "default permissions" from OpenSim
because all known modern viewers set the permissions flags on login.
Ancient abandoned viewers will now default to the SL defaults.
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/SceneObjectPart.cs')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/SceneObjectPart.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs b/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs index c17961b..7d95c8d 100644 --- a/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs +++ b/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs | |||
@@ -482,7 +482,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
482 | private uint _ownerMask = (uint)(PermissionMask.All | PermissionMask.Export); | 482 | private uint _ownerMask = (uint)(PermissionMask.All | PermissionMask.Export); |
483 | private uint _groupMask = (uint)PermissionMask.None; | 483 | private uint _groupMask = (uint)PermissionMask.None; |
484 | private uint _everyoneMask = (uint)PermissionMask.None; | 484 | private uint _everyoneMask = (uint)PermissionMask.None; |
485 | private uint _nextOwnerMask = (uint)(PermissionMask.Move | PermissionMask.Modify | PermissionMask.Transfer); | 485 | private uint _nextOwnerMask = (uint)(PermissionMask.Move | PermissionMask.Transfer); |
486 | private PrimFlags _flags = PrimFlags.None; | 486 | private PrimFlags _flags = PrimFlags.None; |
487 | private DateTime m_expires; | 487 | private DateTime m_expires; |
488 | private DateTime m_rezzed; | 488 | private DateTime m_rezzed; |