summaryrefslogtreecommitdiffstats
path: root/install/ui/aci.js
diff options
context:
space:
mode:
authorEndi S. Dewata <edewata@redhat.com>2011-03-21 12:35:12 -0500
committerAdam Young <ayoung@redhat.com>2011-03-29 17:52:19 -0400
commitcb5e709e7d0115d322613d2e67cfdcf549142674 (patch)
tree06340c183d5284703b8c366afbf4205335083020 /install/ui/aci.js
parente7fda0652d26a3b9cb2bab5430e483452a333893 (diff)
downloadfreeipa-cb5e709e7d0115d322613d2e67cfdcf549142674.tar.gz
freeipa-cb5e709e7d0115d322613d2e67cfdcf549142674.tar.xz
freeipa-cb5e709e7d0115d322613d2e67cfdcf549142674.zip
Fixed undefined label in permission adder dialog box.
The IPA.rights_widget was fixed to invoke the base init() method to load the i18n labels properly. Ticket 1113
Diffstat (limited to 'install/ui/aci.js')
-rw-r--r--install/ui/aci.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/install/ui/aci.js b/install/ui/aci.js
index ea220f9af..bb3bcbea4 100644
--- a/install/ui/aci.js
+++ b/install/ui/aci.js
@@ -181,6 +181,9 @@ IPA.rights_widget = function(spec) {
that.rights = ['write', 'add', 'delete'];
that.init = function() {
+
+ that.widget_init();
+
for (var i=0; i<that.rights.length; i++) {
var right = that.rights[i];
that.add_option({label: right, value: right});