change IgnoreEstatePaymentAccessControl and IgnoreEstateMinorAccessControl default to true, since this require flags to be set on dbs, and enforcing was not working well
parent
29a6c1d0c8
commit
b9e74dd504
|
@ -93,8 +93,8 @@ namespace OpenSim.Region.CoreModules.World.Estate
|
||||||
if (config != null)
|
if (config != null)
|
||||||
{
|
{
|
||||||
AllowRegionRestartFromClient = config.GetBoolean("AllowRegionRestartFromClient", true);
|
AllowRegionRestartFromClient = config.GetBoolean("AllowRegionRestartFromClient", true);
|
||||||
m_ignoreEstateMinorAccessControl = config.GetBoolean("IgnoreEstateMinorAccessControl", false);
|
m_ignoreEstateMinorAccessControl = config.GetBoolean("IgnoreEstateMinorAccessControl", true);
|
||||||
m_ignoreEstatePaymentAccessControl = config.GetBoolean("IgnoreEstatePaymentAccessControl", false);
|
m_ignoreEstatePaymentAccessControl = config.GetBoolean("IgnoreEstatePaymentAccessControl", true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -553,11 +553,11 @@
|
||||||
; Default is true
|
; Default is true
|
||||||
AllowRegionRestartFromClient = true
|
AllowRegionRestartFromClient = true
|
||||||
|
|
||||||
; ignore Minors access control. Default false
|
; ignore Minors access control. Default true
|
||||||
;IgnoreEstateMinorAccessControl = false;
|
;IgnoreEstateMinorAccessControl = true;
|
||||||
|
|
||||||
; ignore payment info control. Default false
|
; ignore payment info control. Default true
|
||||||
;IgnoreEstatePaymentAccessControl = false
|
;IgnoreEstatePaymentAccessControl = true
|
||||||
|
|
||||||
|
|
||||||
[UserProfiles]
|
[UserProfiles]
|
||||||
|
|
Loading…
Reference in New Issue