summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEndi S. Dewata <edewata@redhat.com>2011-03-21 12:35:12 -0500
committerEndi S. Dewata <edewata@redhat.com>2011-03-21 13:41:11 -0400
commit1a4e8ddfbae34370e815dd5193800fb8b40c0200 (patch)
tree7490953f46bc76bb9c32ba648c9d584e54cf1518
parentba5e0c43070c1ec77e45a032cd3dabbe0f7a76fc (diff)
downloadfreeipa-1a4e8ddfbae34370e815dd5193800fb8b40c0200.tar.gz
freeipa-1a4e8ddfbae34370e815dd5193800fb8b40c0200.tar.xz
freeipa-1a4e8ddfbae34370e815dd5193800fb8b40c0200.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
-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 ea220f9a..bb3bcbea 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});