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/Framework | |
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/Framework')
-rw-r--r-- | OpenSim/Framework/IClientAPI.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs index 696b0ef..c949c04 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs | |||
@@ -242,7 +242,7 @@ namespace OpenSim.Framework | |||
242 | 242 | ||
243 | public delegate void CreateNewInventoryItem( | 243 | public delegate void CreateNewInventoryItem( |
244 | IClientAPI remoteClient, UUID transActionID, UUID folderID, uint callbackID, string description, string name, | 244 | IClientAPI remoteClient, UUID transActionID, UUID folderID, uint callbackID, string description, string name, |
245 | sbyte invType, sbyte type, byte wearableType, uint nextOwnerMask, int creationDate); | 245 | sbyte invType, sbyte type, byte wearableType, uint everyoneMask, int creationDate); |
246 | 246 | ||
247 | public delegate void LinkInventoryItem( | 247 | public delegate void LinkInventoryItem( |
248 | IClientAPI remoteClient, UUID transActionID, UUID folderID, uint callbackID, string description, string name, | 248 | IClientAPI remoteClient, UUID transActionID, UUID folderID, uint callbackID, string description, string name, |