Computation of user rights: added a config flag to force the legacy algorithm (user_rights_legacy, defaulting to false)

SVN:trunk[3366]
This commit is contained in:
Romain Quetiez
2014-10-16 10:14:17 +00:00
parent 1f8d4d379f
commit 37ebb51a2b
2 changed files with 14 additions and 0 deletions

View File

@@ -769,6 +769,14 @@ class Config
'source_of_value' => '',
'show_in_conf_sample' => false,
),
'user_rights_legacy' => array(
'type' => 'bool',
'description' => 'Set to true to restore the buggy algorithm for the computation of user rights (within the same profile, ALLOW on the class itself has precedence on DENY of a parent class)',
'default' => false,
'value' => '',
'source_of_value' => '',
'show_in_conf_sample' => false,
),
);
public function IsProperty($sPropCode)