mirror of
https://github.com/opensim/opensim.git
synced 2026-08-09 02:36:00 +08:00
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.
This commit is contained in:
@@ -106,7 +106,8 @@ namespace OpenSim.Server.Handlers.AgentPreferences
|
||||
return FailureResult();
|
||||
AgentPrefs prefs = m_AgentPreferencesService.GetAgentPreferences(userID);
|
||||
Dictionary<string, object> result = new Dictionary<string, object>();
|
||||
result = prefs.ToKeyValuePairs();
|
||||
if (prefs != null)
|
||||
result = prefs.ToKeyValuePairs();
|
||||
|
||||
string xmlString = ServerUtils.BuildXmlResponse(result);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user