diff options
Diffstat (limited to 'install/ui/details.js')
-rw-r--r-- | install/ui/details.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/install/ui/details.js b/install/ui/details.js index 618d02f5..176e7883 100644 --- a/install/ui/details.js +++ b/install/ui/details.js @@ -996,7 +996,9 @@ IPA.acl_state_evaluator = function(spec) { rights = record.attributelevelrights[that.attribute]; } - rights = rights || ''; + // Full rights if we don't know the rights. Better to allow action and + // then to show error dialog than not be able to do something. + rights = rights || 'rscwo'; for (i=0; i<rights.length; i++) { state = that.attribute + '_' + rights.charAt(i); |