diff options
author | Adam Young <ayoung@redhat.com> | 2011-06-27 12:10:32 -0400 |
---|---|---|
committer | Adam Young <ayoung@redhat.com> | 2011-06-27 12:14:49 -0400 |
commit | 800cb7f46e68f4ef7bb0c9f99fb960563d15bf97 (patch) | |
tree | 2c0c648159861b6098d34d78d21cf2344c98bbb2 | |
parent | 7452b6d3cba288b10fe3452f9ee93d052fd45ebc (diff) | |
download | freeipa-800cb7f46e68f4ef7bb0c9f99fb960563d15bf97.tar.gz freeipa-800cb7f46e68f4ef7bb0c9f99fb960563d15bf97.tar.xz freeipa-800cb7f46e68f4ef7bb0c9f99fb960563d15bf97.zip |
identify target as section for permissions
-rw-r--r-- | install/ui/aci.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/install/ui/aci.js b/install/ui/aci.js index 077cbebdc..1a95af0e7 100644 --- a/install/ui/aci.js +++ b/install/ui/aci.js @@ -393,6 +393,7 @@ IPA.target_section = function(spec) { spec = spec || {}; var that = IPA.details_section(spec); + that.section = true; that.undo = typeof spec.undo == 'undefined' ? true : spec.undo; that.filter_text = IPA.text_widget({name: 'filter', undo: that.undo}); |