diff options
Diffstat (limited to 'install')
-rw-r--r-- | install/static/add.js | 9 | ||||
-rw-r--r-- | install/static/test/aci_tests.js | 2 |
2 files changed, 1 insertions, 10 deletions
diff --git a/install/static/add.js b/install/static/add.js index 782bb185..22914bbe 100644 --- a/install/static/add.js +++ b/install/static/add.js @@ -88,12 +88,6 @@ function ipa_add_dialog(spec) { that.dialog_init(); }; - /* Fields that are not displayed directly, but that are managed by - another mechanism, such as the ACI permissions*/ - that.additional_fields = []; - that.additional_field = function(field) { - that.additional_fields.push(field); - } function save_field(field, record, args, options){ var pkey_name = IPA.metadata[that.entity_name].primary_key; @@ -114,9 +108,6 @@ function ipa_add_dialog(spec) { for (var i=0; i<that.fields.length; i++) { save_field(that.fields[i], record, args, options); } - for (var i=0; i<that.additional_fields.length; i++) { - save_field(that.additional_fields[i], record, args, options); - } ipa_cmd('add', args, options, on_success, on_error, that.entity_name); }; diff --git a/install/static/test/aci_tests.js b/install/static/test/aci_tests.js index 76bff355..9505f1e1 100644 --- a/install/static/test/aci_tests.js +++ b/install/static/test/aci_tests.js @@ -1,5 +1,5 @@ /* Authors: - * Endi Sukma Dewata <edewata@redhat.com> + * Adam Young <ayoung@redhat.com> * * Copyright (C) 2010 Red Hat * see file 'COPYING' for use and warranty information |